Skip to content

Commit

Permalink
Win32 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dfranx committed Jul 27, 2020
1 parent 7f289cb commit a91307e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SHADERed/Objects/Debug/ExpressionCompiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ namespace ed {
}

bool hasNull = false;
for (int i = 0; i < params.size(); i++)
for (unsigned int i = 0; i < params.size(); i++)
if (*(params.begin() + i) == nullptr) {
hasNull = true;
break;
Expand Down

0 comments on commit a91307e

Please sign in to comment.