diff options
author | Alon Zakai <alonzakai@gmail.com> | 2017-06-01 17:24:57 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2017-06-01 17:24:57 -0700 |
commit | bd001c187b90a570ce8babaad83af3b420f48eb5 (patch) | |
tree | eb1565a85ee751d1ebc52673916d62d17ef44e36 | |
parent | 89cb24ae1f91132315479475c70a1224a224aab6 (diff) | |
download | binaryen-bd001c187b90a570ce8babaad83af3b420f48eb5.tar.gz binaryen-bd001c187b90a570ce8babaad83af3b420f48eb5.tar.bz2 binaryen-bd001c187b90a570ce8babaad83af3b420f48eb5.zip |
clean up unnecessary spacing
-rw-r--r-- | src/wasm/wasm-s-parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm/wasm-s-parser.cpp b/src/wasm/wasm-s-parser.cpp index 716355f46..6536d78fb 100644 --- a/src/wasm/wasm-s-parser.cpp +++ b/src/wasm/wasm-s-parser.cpp @@ -1648,7 +1648,7 @@ void SExpressionWasmBuilder::parseImport(Element& s) { } if (inner.size() > j+1) { Element& result = *inner[j+1]; - if (result[0]->str() != RESULT) throw ParseException("expected result"); + if (result[0]->str() != RESULT) throw ParseException("expected result"); type->result = stringToWasmType(result[1]->str()); } } |