1
0
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:
Sandu Liviu Catalin
2020-04-10 10:23:44 +03:00
parent 15532298dc
commit 48c72e3cfb
2 changed files with 9 additions and 9 deletions

View File

@ -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: