diff options
author | chai <chaifix@163.com> | 2018-07-22 12:28:03 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-07-22 12:28:03 +0800 |
commit | b2c7bb0b283dd2a80f345e26c042d6ffaf05209c (patch) | |
tree | d0945284f54a35ce00de80135ff7863af7b6e32d /src/lua/luaopen_types.h | |
parent | 50d060cd3a6831a1712195833c1f2774225e584c (diff) |
update
Diffstat (limited to 'src/lua/luaopen_types.h')
-rw-r--r-- | src/lua/luaopen_types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/luaopen_types.h b/src/lua/luaopen_types.h index ed0d16d..8c1756f 100644 --- a/src/lua/luaopen_types.h +++ b/src/lua/luaopen_types.h @@ -18,12 +18,12 @@ namespace lua class Proxy { public: - inline void bind(void* obj) + inline void bind(const void* obj) { object = obj; } - void* object; + const void* object; }; } |