LibCpp: Parse nullptr literal

This commit is contained in:
Itamar 2021-03-28 10:40:20 +03:00 committed by Andreas Kling
commit 9954a1837f
Notes: sideshowbarker 2024-07-18 20:42:10 +09:00
3 changed files with 27 additions and 4 deletions

View file

@ -437,4 +437,9 @@ void NamespaceDeclaration::dump(size_t indent) const
decl.dump(indent + 1);
}
void NullPointerLiteral::dump(size_t indent) const
{
ASTNode::dump(indent);
}
}