header-only
Here are 754 public repositories matching this topic...
Hello there! Cool framework project!!
It accepts translation to Portuguese-Brazil in documentations?
Hey, could I get full documentation or post example? I want to recive Post's like
http:/example.com/login/?username=tester&password=myPassword
But I don't understand the only example which I've found in readme.md
Or mayby any idea how url would looks like for this:
CROW_ROUTE(app, "/add_json")
.methods("POST"_method)
([](const crow::request& req){
auto x = crow::json::load(req
-
Updated
Feb 18, 2020 - C++
-
Updated
Feb 18, 2020 - C++
-
Updated
Feb 18, 2020 - C++
-
Updated
Feb 18, 2020 - C++
Description
I'm trying to use what the Qt landscape calls a "data driven testing". Here's my code:
TEST_CASE("converting a byte buffer to a float")
{
float f;
std::string buffer;
DOCTEST_SUBCASE("0x41480000 (= 12.5)") { buffer = "\x00\x00\x48\x41"s; f = 12.5f; }
DOCTEST_SUBCASE("0x3dcccccd (= 0.1)") -
Updated
Feb 18, 2020 - C++
GCC appears to evaluate transform function calls out of order, which I think it's allowed to do because function argument evaluation order is undefined. Hana should explicitly document the lack of ordering guarantees in transform.
-
Updated
Feb 18, 2020 - C++
We'd appreciate a PR to add CI tests for Android. Ideally, we are looking for a maintainer that also takes care of maintenance of those jobs and Android support in general.
-
Updated
Feb 4, 2020 - C++
See https://github.com/Neargye/magic_enum#readme.
If someone tries both Better Enums and magic_enum, and there is a reason to prefer Better Enums, please leave a comment here.
Otherwise, I think we should recommend magic_enum and move Better Enums toward deprecation.
cc @Neargye
-
Updated
Feb 18, 2020 - C++
-
Updated
Feb 14, 2020 - C++
-
Updated
Feb 17, 2020 - C++
I'm not sure if this is the right place to remark this, but the documentation webpage has many links to the underlying zmq functions, but all links to those appear to be broken.
-
Updated
Feb 17, 2020 - C++
-
Updated
Feb 17, 2020 - C
-
Updated
Feb 18, 2020 - C++
Add API nameof::cstring to https://github.com/Neargye/nameof/blob/master/doc/reference.md
-
Updated
Feb 17, 2020 - C++
-
Updated
Feb 17, 2020 - C++
This repository's README.md is way too long. The documentation specifics should be in a separate .md file, on the wiki, or both; and the main README.md should focus on the sections other than the Detailed Examples. In fact, Overview is also too long; I'd stick to a couple of examples, no more than that for the repo landing page.
Add documentation
The Guidelines Support Library is sort-of documented in the C++ Core Guidelines, so one could argue that GSL implementations such as gsl-lite only need to document their configuration switches.
However, gsl-lite offers a variety of additional features which are currently undocumented (e.g. the gsl_HAVE_* family of macro
Add code of conduct
Add Contributing
-
Updated
Feb 7, 2020 - C++
-
Updated
Feb 12, 2020 - C
Improve this page
Add a description, image, and links to the header-only topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the header-only topic, visit your repo's landing page and select "manage topics."
Hi @nlohmann and other mainteners,
First of all, I must say that I love your work on this librairy.❤️
It feels really easy to use, and to read code using this library !
I have created this issue to talk about the warnings that cppcheck found on this project.
I'm currently experimenting with both this library and cppcheck on some little side projects. A