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

LibJS: Add Cell::Visitor::visit(Cell&)

This commit is contained in:
Andreas Kling 2022-08-09 12:35:38 +02:00
parent e34e21367e
commit 01828edd37

View file

@ -51,6 +51,10 @@ public:
if (cell)
visit_impl(*cell);
}
void visit(Cell& cell)
{
visit_impl(cell);
}
void visit(Value);
protected: