Replaced old style casts (issue #28)

This commit is contained in:
Benoit Blanchon
2014-10-10 18:44:04 +02:00
parent e725b756a6
commit dae0dc5ebb
5 changed files with 7 additions and 5 deletions

View File

@@ -102,7 +102,7 @@ namespace JsonGeneratorTests
TEST_METHOD(OneNull)
{
object["key"] = (char*) 0;
object["key"] = static_cast<char*>(0);
outputMustBe("{\"key\":null}");
}