1
0
Fork 0

Fix compiler warning (naRuntimeError does not return...)

This commit is contained in:
Thomas Geymayer 2014-06-23 00:42:17 +02:00
parent 1b55ab5f40
commit 694df4b337

View file

@ -53,6 +53,8 @@ static naRef f_createCondition(naContext c, naRef me, int argc, naRef* args)
{
naRuntimeError(c, "createCondition: %s", ex.what());
}
return naNil();
}
//------------------------------------------------------------------------------