We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0286725 commit 7b1f517Copy full SHA for 7b1f517
CodeFormatCore/src/Format/FormatBuilder.cpp
@@ -309,7 +309,7 @@ void FormatBuilder::WriteLine(std::size_t line) {
309
if (line > 1 && _state.GetStyle().keep_indents_on_empty_lines) {
310
AddEndOfLine(1);
311
312
- for (int i = 1; i < line; ++i) {
+ for (std::size_t i = 1; i < line; ++i) {
313
WriteIndent();
314
315
}
0 commit comments