diff options
author | Pixel <pixel@nobis-crew.org> | 2009-06-01 08:32:04 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-06-01 08:32:04 -0700 |
commit | ad49068027fce73fd0a3a3d2c196c567b4f073f6 (patch) | |
tree | e5b9343e8c59685273226a286fdfe0c72f767e70 /lib | |
parent | b81896555a12f284c0dc11478a0c14fc2b725751 (diff) |
How is linux handling that ? dumpvar is static, we shouldn't be able to call this method.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/BLua.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/BLua.cc b/lib/BLua.cc index 2451998..7a85b07 100644 --- a/lib/BLua.cc +++ b/lib/BLua.cc @@ -276,7 +276,7 @@ int LuaStatics::dumpvars(lua_State * _L) { if (L->isstring(2)) L->getglobal(L->tostring(2)); - h = recast<Handle>(); + h = L->recast<Handle>(); L->dumpvars(h, prefix); |