diff options
Diffstat (limited to 'Source/cmDocumentationFormatter.h')
-rw-r--r-- | Source/cmDocumentationFormatter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmDocumentationFormatter.h b/Source/cmDocumentationFormatter.h index 003cf89..5293033 100644 --- a/Source/cmDocumentationFormatter.h +++ b/Source/cmDocumentationFormatter.h @@ -18,9 +18,9 @@ public: void PrintSection(std::ostream& os, cmDocumentationSection const& section); void PrintParagraph(std::ostream& os, const char* text); void PrintColumn(std::ostream& os, const char* text); - void SetIndent(std::string indent) { this->TextIndent = std::move(indent); } + void SetIndent(std::size_t indent) { this->TextIndent = indent; } private: int TextWidth = 77; - std::string TextIndent = {}; + std::size_t TextIndent = 0u; }; |