1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-31 10:24:23 +03:00

some minor improvements

This commit is contained in:
Niels
2016-07-01 16:52:05 +02:00
parent 7ffa07e3a3
commit 26cab42c38
4 changed files with 144 additions and 43 deletions

View File

@ -12,7 +12,6 @@ int main()
auto count_three = j_object.count("three");
// print values
std::cout << std::boolalpha;
std::cout << "number of elements with key \"two\": " << count_two << '\n';
std::cout << "number of elements with key \"three\": " << count_three << '\n';
}