Explorar el Código

Merge pull request #40 from iSLC/master

Remove empty statement.
Alberto Demichelis hace 9 años
padre
commit
8242f5ac06
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      squirrel/sqvm.cpp

+ 1 - 1
squirrel/sqvm.cpp

@@ -301,7 +301,7 @@ bool SQVM::ToString(const SQObjectPtr &o,SQObjectPtr &res)
             SQObjectPtr closure;
             if(_delegable(o)->GetMetaMethod(this, MT_TOSTRING, closure)) {
                 Push(o);
-                if(CallMetaMethod(closure,MT_TOSTRING,1,res)) {;
+                if(CallMetaMethod(closure,MT_TOSTRING,1,res)) {
                     if(type(res) == OT_STRING)
                         return true;
                 }