Fixed many cpplint warnings

This commit is contained in:
Benoit Blanchon
2014-10-24 00:08:25 +02:00
parent 7f22a1ab39
commit 8071434515
7 changed files with 33 additions and 33 deletions

View File

@ -98,7 +98,7 @@ TEST_F(JsonObject_Serialization_Tests, OneDoubleDefaultDigits) {
}
TEST_F(JsonObject_Serialization_Tests, OneNull) {
object["key"] = (char *)0;
object["key"] = static_cast<char *>(0);
outputMustBe("{\"key\":null}");
}