Ryan Burn

Results 25 issues of Ryan Burn

``` #include #include "variant.hpp" struct sv { sv(const char*) {} }; int main() { mpark::variant v{"abc"}; std::cout

Generators like arbitrary are missing special numeric values. For example, this test runs fine ``` rc::check("where are the special values?", []() { const auto x = *rc::gen::arbitrary(); RC_ASSERT(std::isfinite(x)); }); ```...

I'm using `configure_make` with apache and get this error ``` :0:10: error: 'redacted' undeclared here (not in a function); did you mean 'rename'? /root/.cache/bazel/_bazel_root/f8087e59fd95af1ae29e8fcb7ff1a3dc/sandbox/linux-sandbox/5/execroot/apache_bazel_example/external/org_apache_httpd/server/buildmark.c:21:36: note: in expansion of macro '__DATE__'...

Have you thought of including some basic primitive concepts? like those defined in "Elements of Programming" and similar to what will be in concepts-lite

We need to add some new maintainers for the project. Please volunteer.

help wanted

If you try to install on OS X, you'll get this error ``` cc -I. -DHTTP_PARSER_STRICT=0 -Wall -Wextra -Werror -O3 -fPIC -c http_parser.c -o libhttp_parser.o cc -shared -o libhttp_parser.2.7.1.dylib libhttp_parser.o...

Thanks for putting out the content. I'm looking forward to the second part of this series. Fyi - you have a typo in your header component https://github.com/dimitrisraptis96/landing-page-with-chakra-ui-part-1/blob/master/src/components/sections/Header.js#L81 ```js Features ```

implementation_deps are an option with cc_library and allow you to add deps that don't propagage https://bazel.build/reference/be/c-cpp#cc_library.implementation_deps

enhancement