diff --git a/src/ir/module-utils.cpp b/src/ir/module-utils.cpp index 250147d2ea3..0c82cd43c1c 100644 --- a/src/ir/module-utils.cpp +++ b/src/ir/module-utils.cpp @@ -575,9 +575,8 @@ InsertOrderedSet getPublicTypeSet(Module& wasm) { // TODO: Consider Tags as well, but they should store HeapTypes instead of // Signatures first. std::unordered_set publicTables; - ModuleUtils::iterImportedTables(wasm, [&](Table* table) { - publicTables.insert(table); - }); + ModuleUtils::iterImportedTables( + wasm, [&](Table* table) { publicTables.insert(table); }); ModuleUtils::iterImportedGlobals(wasm, [&](Global* global) { if (global->type.isRef()) { notePublic(global->type.getHeapType());