diff --git a/Userland/Libraries/LibJS/Runtime/AtomicsObject.cpp b/Userland/Libraries/LibJS/Runtime/AtomicsObject.cpp index 32bd982fe5..249e591e98 100644 --- a/Userland/Libraries/LibJS/Runtime/AtomicsObject.cpp +++ b/Userland/Libraries/LibJS/Runtime/AtomicsObject.cpp @@ -107,6 +107,7 @@ static ThrowCompletionOr perform_atomic_operation(VM& vm, TypedArrayBase& auto operation_wrapper = [&, operation = forward(operation)](ByteBuffer x_bytes, ByteBuffer y_bytes) -> ByteBuffer { if constexpr (IsFloatingPoint) { + (void)operation; VERIFY_NOT_REACHED(); } else { using U = Conditional, u8, T>;