From 5df6ae7de2d2bc9e8faa113ae5d6329842d9e4f2 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 6 Jan 2023 00:33:40 +0100 Subject: [PATCH] This is not noexcept in wabt --- test/utils/wabt_engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/wabt_engine.cpp b/test/utils/wabt_engine.cpp index 3c1fc93a3..4f37c38cd 100644 --- a/test/utils/wabt_engine.cpp +++ b/test/utils/wabt_engine.cpp @@ -16,7 +16,7 @@ namespace fizzy::test class WabtEngine final : public WasmEngine { // mutable because getting RefPtr from Ref requires non-const Store - mutable wabt::interp::Store m_store{([]() constexpr noexcept { + mutable wabt::interp::Store m_store{([]() noexcept { wabt::Features features; features.disable_multi_value(); features.disable_sat_float_to_int();