Skip to content

Commit 660a260

Browse files
committed
FIX warning
1 parent c55d2f8 commit 660a260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeFormatCore/src/Format/FormatBuilder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void FormatBuilder::DoResolve(LuaSyntaxNode &syntaxNode, const LuaSyntaxTree &t,
148148
}
149149
case TokenStrategy::SpaceAfterCommentDash: {
150150
auto text = syntaxNode.GetText(t);
151-
auto pos = 0;
151+
std::size_t pos = 0;
152152
while (pos < text.size() && text[pos] == '-') {
153153
WriteChar('-');
154154
pos++;

0 commit comments

Comments
 (0)