mirror of
https://github.com/nlohmann/json.git
synced 2026-02-26 21:36:27 +00:00
🔨 using std::array to buffer input
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user