aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Luamm.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/Luamm.hh')
-rw-r--r--src/FbTk/Luamm.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/FbTk/Luamm.hh b/src/FbTk/Luamm.hh
index 96a5eea..110ac97 100644
--- a/src/FbTk/Luamm.hh
+++ b/src/FbTk/Luamm.hh
@@ -204,6 +204,7 @@ namespace lua {
204 bool isnumber(int index) throw() { return lua_isnumber(cobj, index); } 204 bool isnumber(int index) throw() { return lua_isnumber(cobj, index); }
205 bool isstring(int index) throw() { return lua_isstring(cobj, index); } 205 bool isstring(int index) throw() { return lua_isstring(cobj, index); }
206 bool istable(int index) throw() { return lua_istable(cobj, index); } 206 bool istable(int index) throw() { return lua_istable(cobj, index); }
207 bool isuserdata(int index) throw() { return lua_isuserdata(cobj, index); }
207 void pop(int n = 1) throw() { lua_pop(cobj, n); } 208 void pop(int n = 1) throw() { lua_pop(cobj, n); }
208 void pushboolean(bool b) throw() { lua_pushboolean(cobj, b); } 209 void pushboolean(bool b) throw() { lua_pushboolean(cobj, b); }
209 void pushinteger(integer n) throw() { lua_pushinteger(cobj, n); } 210 void pushinteger(integer n) throw() { lua_pushinteger(cobj, n); }