1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-22 15:21:52 +03:00

🔨 using std::array to buffer input

This commit is contained in:
Niels Lohmann
2017-06-17 20:47:53 +02:00
parent 889006f006
commit 1fbb82de89
2 changed files with 24 additions and 23 deletions

View File

@ -1175,7 +1175,6 @@ TEST_CASE("regression tests")
// create and print a JSON from the map
json j = m1;
std::cout << j << std::endl;
// get the map out of JSON
std::map<std::string, int> m2 = j;
@ -1191,7 +1190,6 @@ TEST_CASE("regression tests")
// create and print a JSON from the map
json j = m1;
std::cout << j << std::endl;
// get the map out of JSON
std::map<std::string, std::string> m2 = j;