Skip to content

Commit

Permalink
Fix loop variable type.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 15, 2016
1 parent 63a4d37 commit 27172eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrScriptEngine/BindingsDumper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ void BindingsDumper::PrintClass()
size_t baseCount = bases.size();
if (baseCount)
Print(" : ");
for (u32 i = 0; i<baseCount; i++)
for (size_t i = 0; i<baseCount; i++)
{
if (i)
Print(", ");
Expand Down

0 comments on commit 27172eb

Please sign in to comment.