mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-16 15:17:13 +02:00
Indentation fix for previous commit.
This commit is contained in:
@ -545,17 +545,17 @@ public:
|
||||
const StackGuard sg(vm);
|
||||
sq_pushobject(vm,obj);
|
||||
sq_pushnull(vm);
|
||||
SQRESULT res = SQ_OK;
|
||||
SQRESULT res = SQ_OK;
|
||||
for(SQInteger i = 0; SQ_SUCCEEDED(sq_next(vm,-2)); ++i)
|
||||
{
|
||||
res = func(vm, i);
|
||||
res = func(vm, i);
|
||||
if (SQ_FAILED(res))
|
||||
{
|
||||
break;
|
||||
}
|
||||
sq_pop(vm,2);
|
||||
}
|
||||
return res;
|
||||
return res;
|
||||
}
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user