Skip to content

Commit 5df6ae7

Browse files
committed
This is not noexcept in wabt
1 parent ca348be commit 5df6ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils/wabt_engine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace fizzy::test
1616
class WabtEngine final : public WasmEngine
1717
{
1818
// mutable because getting RefPtr from Ref requires non-const Store
19-
mutable wabt::interp::Store m_store{([]() constexpr noexcept {
19+
mutable wabt::interp::Store m_store{([]() noexcept {
2020
wabt::Features features;
2121
features.disable_multi_value();
2222
features.disable_sat_float_to_int();

0 commit comments

Comments
 (0)