remove unused

This commit is contained in:
Glenn Maynard
2005-06-16 06:44:50 +00:00
parent dd3b227562
commit d48bce4b66
2 changed files with 0 additions and 8 deletions
-6
View File
@@ -380,12 +380,6 @@ bool LuaManager::RunAtExpressionS( CString &sStr )
return true;
}
void LuaManager::Fail( const CString &err )
{
lua_pushstring( L, err );
lua_error( L );
}
/* Like luaL_typerror, but without the special case for argument 1 being "self"
* in method calls, so we give a correct error message after we remove self. */
int LuaHelpers::TypeError( Lua *L, int iArgNo, const char *szName )
-2
View File
@@ -62,8 +62,6 @@ public:
/* If sStr begins with @, evaluate the rest as an expression and store the result over sStr. */
bool RunAtExpressionS( CString &sStr );
void Fail( const CString &err );
void SetGlobal( const CString &sName, int val );
void SetGlobal( const CString &sName, bool val );
void SetGlobal( const CString &sName, const CString &val );