1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

LibCpp: Parse nullptr literal

This commit is contained in:
Itamar 2021-03-28 10:40:20 +03:00 committed by Andreas Kling
parent cbb49f26d9
commit 9954a1837f
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);
}
}