diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm/wasm-type.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/wasm/wasm-type.cpp b/src/wasm/wasm-type.cpp index 6328180f8..adb2c7fa8 100644 --- a/src/wasm/wasm-type.cpp +++ b/src/wasm/wasm-type.cpp @@ -2109,10 +2109,6 @@ TypePrinter::print(const Struct& struct_, print(struct_.fields[i]); os << ')'; } - // TODO: Remove this extra space kept to minimize test diffs. - if (struct_.fields.size() == 0) { - os << ' '; - } return os << ")"; } |