We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b15354 commit c69e3b0Copy full SHA for c69e3b0
GraphQLParser.cpp
@@ -19,7 +19,7 @@ namespace graphql {
19
// Given properly-configured yylex, run the parser and return the
20
// result.
21
static std::unique_ptr<ast::Node> doParse(const char **outError, yyscan_t scanner, bool enableSchema) {
22
- Node *outAST = NULL;
+ Node *outAST = nullptr;
23
yy::GraphQLParserImpl parser(enableSchema, &outAST, outError, scanner);
24
int failure = parser.parse();
25
if (failure) {
0 commit comments