Skip to content

Commit

Permalink
Fix type conversion warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobo1 committed Aug 24, 2018
1 parent 6ed93f5 commit 9ee791f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nppAutoDetectIndent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ namespace nppAutoDetectIndent
{
decltype(IndentionStats::spaceCount) tempCount {};

for (int i = 2; i < result.spaceCount.size(); ++i)
for (int i = 2; i < static_cast<int>(result.spaceCount.size()); ++i)
{
for (int k = 2; k <= i; ++k)
{
Expand Down

0 comments on commit 9ee791f

Please sign in to comment.