You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: replace throw with throw_or_abort in serialize.hpp for WASM compat
serialize.hpp used bare throw statements which fail to compile in
WASM builds where -fno-exceptions is set. Replace with throw_or_abort
which routes to the appropriate error handling path in both native
(std::runtime_error) and WASM (recovery boundary or abort) builds.
0 commit comments