1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

LibJS: Try to fix Clang build (NewClass::m_class_expression is unused)

This commit is contained in:
Andreas Kling 2021-07-01 17:45:45 +02:00
parent f6028c2534
commit c52ea3dad5

View file

@ -454,6 +454,7 @@ void IteratorResultValue::execute_impl(Bytecode::Interpreter& interpreter) const
void NewClass::execute_impl(Bytecode::Interpreter&) const
{
(void)m_class_expression;
TODO();
}