Phil Nash
Phil Nash
I'm considering pulling the `Option` type out of Catch and making it available to Clara (and all users of Clara), so you could make your field `Clara::Option hostname;` and test...
I've finally implemented this in Clara (not in the single include yet - but will do a release soon). It tries to auto-detect availability of `std::optional`, which seems to work...
+1 (not sure if exactly the same): ``` $ python infoq_downloader.py http://www.infoq.com/presentations/Value-Identity-State-Rich-Hickey Downloading HTML file Traceback (most recent call last): File "infoq_downloader.py", line 51, in video_url = html_doc.cssselect('video > source')[0].attrib['src']...
Oh, actually I see it's covered here: https://github.com/mtayseer/infoq-downloader/issues/9
For some reason I missed the original ping on this - sorry for not responding sooner, @haf. I noticed that throwing on port binding failure was reintroduced (although by trying...
I know it's been a while, but I've started looking at this again. I've got an initial implementation up and running on a local branch - but I wanted to...
Excellent point, @ArekPiekarz - that would help, wouldn't it - thanks :-) ``` one: a, 8 one: a, 9 one: a, 10 one: a, 11 one: a, 2 two: a,...
Well that's easy. Just write three assets (`CHECK` or `REQUIRE`). No advantage to generators here :-)
Like I say, I think this example is best written as something like: ```c++ TEST_CASE( "eval" ) { REQUIRE( eval("3+5") == 8 ); REQUIRE( eval("2+4") == 6 ); REQUIRE( eval("6*9")...