fix broken script array

This commit is contained in:
yvt 2014-04-07 00:33:29 +09:00
parent d856bcadaa
commit bd9755b0b7

View File

@ -171,8 +171,9 @@ void RegisterScriptArray(asIScriptEngine *engine, bool defaultArray)
if( defaultArray )
{
#ifndef NDEBUG
int r = engine->RegisterDefaultArrayType("array<T>"); assert( r >= 0 );
int r =
#endif
engine->RegisterDefaultArrayType("array<T>"); assert( r >= 0 );
}
}