1
0
mirror of https://github.com/nlohmann/json synced 2024-11-27 06:10:06 +00:00

Avoid warning with Xcode's clang

This commit is contained in:
Alexandre Hamez 2015-06-08 11:38:52 +02:00
parent adc065d328
commit c49d83172f

View File

@ -1983,7 +1983,7 @@ class basic_json
o.width(0);
// do the actual serialization
j.dump(o, prettyPrint, indentation);
j.dump(o, prettyPrint, static_cast<int>(indentation));
return o;
}