Skip to content

Commit c69e3b0

Browse files
committed
Trivial s/NULL/nullptr
1 parent 1b15354 commit c69e3b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GraphQLParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace graphql {
1919
// Given properly-configured yylex, run the parser and return the
2020
// result.
2121
static std::unique_ptr<ast::Node> doParse(const char **outError, yyscan_t scanner, bool enableSchema) {
22-
Node *outAST = NULL;
22+
Node *outAST = nullptr;
2323
yy::GraphQLParserImpl parser(enableSchema, &outAST, outError, scanner);
2424
int failure = parser.parse();
2525
if (failure) {

0 commit comments

Comments
 (0)