Use NULL instead of nullptr

This commit is contained in:
Max Brunsfeld 2018-06-18 10:17:38 -07:00
parent d746362d0f
commit 6222cd9127
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ struct Scanner {
}
bool scan_implicit_end_tag(TSLexer *lexer) {
Tag *parent = tags.empty() ? nullptr : &tags.back();
Tag *parent = tags.empty() ? NULL : &tags.back();
bool is_closing_tag = false;
if (lexer->lookahead == '/') {