mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01:00
Replaced old style casts (issue #28)
This commit is contained in:
@@ -102,7 +102,7 @@ namespace JsonGeneratorTests
|
||||
|
||||
TEST_METHOD(OneNull)
|
||||
{
|
||||
object["key"] = (char*) 0;
|
||||
object["key"] = static_cast<char*>(0);
|
||||
outputMustBe("{\"key\":null}");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user