From 4673b911041889c396383c47b4ac3c44e80051f4 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 3 Mar 2014 14:34:45 +1100 Subject: [PATCH] Use nullptr rather than NULL --- json.cpp.rl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json.cpp.rl b/json.cpp.rl index b42fdb50..57a37956 100644 --- a/json.cpp.rl +++ b/json.cpp.rl @@ -273,7 +273,7 @@ std::unique_ptr json::parse (const char *start, const char *stop) { bool __success = true; - json::node *__root = NULL; + json::node *__root = nullptr; size_t top = 0; int cs; deque fsmstack;