From c52ea3dad5a302a7abe6946fb37bd8b58990e011 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 1 Jul 2021 17:45:45 +0200 Subject: [PATCH] LibJS: Try to fix Clang build (NewClass::m_class_expression is unused) --- Userland/Libraries/LibJS/Bytecode/Op.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibJS/Bytecode/Op.cpp b/Userland/Libraries/LibJS/Bytecode/Op.cpp index e56924adc8..f3deee9907 100644 --- a/Userland/Libraries/LibJS/Bytecode/Op.cpp +++ b/Userland/Libraries/LibJS/Bytecode/Op.cpp @@ -454,6 +454,7 @@ void IteratorResultValue::execute_impl(Bytecode::Interpreter& interpreter) const void NewClass::execute_impl(Bytecode::Interpreter&) const { + (void)m_class_expression; TODO(); }