Skip to content

Commit 27172eb

Browse files
author
nitrocaster
committed
Fix loop variable type.
1 parent 63a4d37 commit 27172eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrScriptEngine/BindingsDumper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ void BindingsDumper::PrintClass()
250250
size_t baseCount = bases.size();
251251
if (baseCount)
252252
Print(" : ");
253-
for (u32 i = 0; i<baseCount; i++)
253+
for (size_t i = 0; i<baseCount; i++)
254254
{
255255
if (i)
256256
Print(", ");

0 commit comments

Comments
 (0)