Use nullptr instead of NULL where appropriate

This commit is contained in:
Alex Beregszaszi
2018-10-09 18:06:39 +01:00
parent e732c49c2f
commit 9e032bff43
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ void testConstantOptimizer()
void runCompiler(string input)
{
string outputString(compileStandard(input.c_str(), NULL));
string outputString(compileStandard(input.c_str(), nullptr));
Json::Value output;
if (!jsonParseStrict(outputString, output))
{