summaryrefslogtreecommitdiff
path: root/include/BLua.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/BLua.h')
-rw-r--r--include/BLua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/BLua.h b/include/BLua.h
index 6cfbd2b..6fadeaf 100644
--- a/include/BLua.h
+++ b/include/BLua.h
@@ -84,7 +84,7 @@ class Lua : public Base {
void push(lua_Number);
void push(const String &);
void push(bool);
- void push(char *, int size = -1);
+ void push(const char *, int size = -1);
void push(void *);
void push(lua_CFunction, int = 0);
void pop(int = 1);
@@ -216,7 +216,7 @@ enum Lua_types_t {
struct lua_functypes_t {
int number;
- char * name;
+ const char * name;
int minargs, maxargs;
int argtypes[MAXARGS];
};