diff options
author | Michael <mbebenita@Michaels-MacBook-Pro-4.local> | 2016-02-22 15:40:05 -0800 |
---|---|---|
committer | Michael <mbebenita@Michaels-MacBook-Pro-4.local> | 2016-02-22 15:47:57 -0800 |
commit | 8c12e60328a9491104df2937c1528b354141d5d3 (patch) | |
tree | 43a61c684bdf2c3b4cbaba22a1f445d1b5a26179 /src/pretty_printing.h | |
parent | af0f6ef999e8ddf9c168b697710fd313883e8807 (diff) | |
download | binaryen-8c12e60328a9491104df2937c1528b354141d5d3.tar.gz binaryen-8c12e60328a9491104df2937c1528b354141d5d3.tar.bz2 binaryen-8c12e60328a9491104df2937c1528b354141d5d3.zip |
Whitespace removal.
Diffstat (limited to 'src/pretty_printing.h')
-rw-r--r-- | src/pretty_printing.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/pretty_printing.h b/src/pretty_printing.h index f0a233d69..9dec22ca3 100644 --- a/src/pretty_printing.h +++ b/src/pretty_printing.h @@ -32,18 +32,6 @@ inline std::ostream &doIndent(std::ostream &o, unsigned indent) { return o; } -inline std::ostream &incIndent(std::ostream &o, unsigned& indent) { - o << '\n'; - indent++; - return o; -} - -inline std::ostream &decIndent(std::ostream &o, unsigned& indent) { - indent--; - doIndent(o, indent); - return o << ')'; -} - inline std::ostream &prepareMajorColor(std::ostream &o) { Colors::red(o); Colors::bold(o); |