fix clang-tidy issues

This commit is contained in:
Mayukha Vadari
2026-04-02 19:05:34 -04:00
parent 0deb6bcadf
commit c5598a4284
8 changed files with 171 additions and 168 deletions

View File

@@ -77,9 +77,9 @@ using WasmImporttypeVec = WasmVec<
struct WasmiResult
{
WasmValVec r;
bool f; // failure flag
bool f{false}; // failure flag
WasmiResult(unsigned N = 0) : r(N), f(false)
WasmiResult(unsigned N = 0) : r(N)
{
}