summaryrefslogtreecommitdiff
path: root/src/pretty_printing.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2017-03-09 13:32:03 -0800
committerGitHub <noreply@github.com>2017-03-09 13:32:03 -0800
commitbe4be557567251a73f40bfd7a48220b33f5ddc58 (patch)
treed4aa0a25a1c7331b56404c76eea1a6cfa971c44e /src/pretty_printing.h
parentd6508e1f9cef33c43016e4da7dd4b94392f280a9 (diff)
downloadbinaryen-be4be557567251a73f40bfd7a48220b33f5ddc58.tar.gz
binaryen-be4be557567251a73f40bfd7a48220b33f5ddc58.tar.bz2
binaryen-be4be557567251a73f40bfd7a48220b33f5ddc58.zip
use a single space for pretty printing of wasts, so massive wasts are less unruly (#928)
Diffstat (limited to 'src/pretty_printing.h')
-rw-r--r--src/pretty_printing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pretty_printing.h b/src/pretty_printing.h
index 9dec22ca3..2a1a532dc 100644
--- a/src/pretty_printing.h
+++ b/src/pretty_printing.h
@@ -27,7 +27,7 @@
inline std::ostream &doIndent(std::ostream &o, unsigned indent) {
for (unsigned i = 0; i < indent; i++) {
- o << " ";
+ o << " ";
}
return o;
}