From 6d07675c7397e351c8c15ae961f8ad06c3f9d8a6 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Wed, 26 Apr 2017 22:57:35 +1000 Subject: Remove lightuserdata object subtype --- src/defs.js | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/defs.js') diff --git a/src/defs.js b/src/defs.js index e24f419..fd8038a 100644 --- a/src/defs.js +++ b/src/defs.js @@ -66,9 +66,6 @@ const constant_types = { constant_types.LUA_TSHRSTR = constant_types.LUA_TSTRING | (0 << 4); /* short strings */ constant_types.LUA_TLNGSTR = constant_types.LUA_TSTRING | (1 << 4); /* long strings */ -constant_types.LUA_TLIGHTUSERDATA_PTR = constant_types.LUA_TLIGHTUSERDATA | (0 << 4); /* short strings */ -constant_types.LUA_TLIGHTUSERDATA_OBJ = constant_types.LUA_TLIGHTUSERDATA | (1 << 4); /* long strings */ - constant_types.LUA_TNUMFLT = constant_types.LUA_TNUMBER | (0 << 4); /* float numbers */ constant_types.LUA_TNUMINT = constant_types.LUA_TNUMBER | (1 << 4); /* integer numbers */ -- cgit v1.2.3-54-g00ecf