diff options
Diffstat (limited to 'src/pretty_printing.h')
-rw-r--r-- | src/pretty_printing.h | 2 |
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; } |