diff options
Diffstat (limited to 'src/script/luaopen_types.h')
-rw-r--r-- | src/script/luaopen_types.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/script/luaopen_types.h b/src/script/luaopen_types.h index c6ce202..bb6f5b1 100644 --- a/src/script/luaopen_types.h +++ b/src/script/luaopen_types.h @@ -15,15 +15,10 @@ class Proxy public: inline void bind(void* obj) { - if (obj != 0 && obj != nullptr) - object = obj; + object = obj; } void* object; - - ~Proxy() - { - } }; #endif |