From 078f7b9bf57426cca2db96edbf213765354fc57a Mon Sep 17 00:00:00 2001 From: Max Graey Date: Fri, 29 Jul 2022 07:25:43 +0300 Subject: Refactor doIndent (#4847) Refactor everywhere from: ```c++ for (size_t i = 0; i < indent; i++) { o << ' '; } ``` to: ```c++ o << std::string(indent, ' '); ``` ### Motivation It is much simpler and should produce smaller code.See godbolt: https://godbolt.org/z/KMYMdn7z5 --- src/pretty_printing.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/pretty_printing.h') diff --git a/src/pretty_printing.h b/src/pretty_printing.h index f1dd9db04..f693c4d51 100644 --- a/src/pretty_printing.h +++ b/src/pretty_printing.h @@ -26,10 +26,7 @@ #include "support/colors.h" inline std::ostream& doIndent(std::ostream& o, unsigned indent) { - for (unsigned i = 0; i < indent; i++) { - o << " "; - } - return o; + return o << std::string(indent, ' '); } inline std::ostream& prepareMajorColor(std::ostream& o) { -- cgit v1.2.3