Use NULL instead of nullptr
This commit is contained in:
parent
d746362d0f
commit
6222cd9127
|
@ -124,7 +124,7 @@ struct Scanner {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool scan_implicit_end_tag(TSLexer *lexer) {
|
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;
|
bool is_closing_tag = false;
|
||||||
if (lexer->lookahead == '/') {
|
if (lexer->lookahead == '/') {
|
||||||
|
|
Loading…
Reference in New Issue