Use nullptr rather than NULL

This commit is contained in:
Danny Robson 2014-03-03 14:34:45 +11:00
parent fe7d507c28
commit 4673b91104

View File

@ -273,7 +273,7 @@ std::unique_ptr<json::node>
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 <int> fsmstack;