1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-09 11:01:47 +03:00

some cleanup

This commit is contained in:
Niels
2015-06-08 16:35:38 +02:00
parent d3b0f207b0
commit 2d26d85c2b
3 changed files with 6 additions and 7 deletions

View File

@ -185,7 +185,7 @@ class basic_json
array_t* array;
/// string (stored with pointer to save storage)
string_t* string;
/// bolean
/// boolean
boolean_t boolean;
/// number (integer)
number_integer_t number_integer;
@ -1983,7 +1983,7 @@ class basic_json
o.width(0);
// do the actual serialization
j.dump(o, prettyPrint, static_cast<int>(indentation));
j.dump(o, prettyPrint, static_cast<unsigned int>(indentation));
return o;
}