diff options
author | pixel <pixel> | 2004-05-01 11:48:57 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-05-01 11:48:57 +0000 |
commit | 8c1b2d217ef0a0cf825e873149c06b72b462d6c4 (patch) | |
tree | 6344dbcd6db4b317621977d1bd10352d6d99b84e /lib/BLua.cc | |
parent | ee584fefbfc67549ae0a8bf6f421b6840cf455de (diff) |
Fixes, changes, improvements, ...
Diffstat (limited to 'lib/BLua.cc')
-rw-r--r-- | lib/BLua.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/BLua.cc b/lib/BLua.cc index 1166915..95519a1 100644 --- a/lib/BLua.cc +++ b/lib/BLua.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: BLua.cc,v 1.17 2003-12-26 23:51:33 pixel Exp $ */ +/* $Id: BLua.cc,v 1.18 2004-05-01 11:48:57 pixel Exp $ */ #include <lualib.h> @@ -27,8 +27,6 @@ #define BUFFERSIZE 2048 #endif -typedef GeneralException LuaException; - class LuaStatics : public Base { public: static const char * getF(lua_State *, void *, size_t *); @@ -619,3 +617,7 @@ void LuaObject::pushdestruct(Lua * L) throw (GeneralException) { wantdestruct = true; } + +LuaException::LuaException(String fn) : GeneralException(fn) { } + +LuaException::LuaException() { } |