diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-29 16:44:44 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-29 16:44:44 -0700 |
commit | d9ae6b3dcccf32a46e92d18105dcf38702e25573 (patch) | |
tree | 66b6e8ba83015cb1412f04636b4035f7bdde5cd9 /src/wasm.h | |
parent | 067c77c9607764405bdf42023c3105a7e6ee81fd (diff) | |
download | binaryen-d9ae6b3dcccf32a46e92d18105dcf38702e25573.tar.gz binaryen-d9ae6b3dcccf32a46e92d18105dcf38702e25573.tar.bz2 binaryen-d9ae6b3dcccf32a46e92d18105dcf38702e25573.zip |
fix export printing
Diffstat (limited to 'src/wasm.h')
-rw-r--r-- | src/wasm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wasm.h b/src/wasm.h index ec2f56ec4..87e18c7ba 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -743,7 +743,6 @@ public: std::ostream& print(std::ostream &o, unsigned indent) { printOpening(o, "export") << ' '; - name.print(o) << ' '; printText(o, name.str) << ' '; value.print(o); o << ')'; |