Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/facebook/luaffifb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ffi.h
diff options
context:
space:
mode:
authorJames R. McKaskill <james@foobar.co.nz>2012-04-30 03:11:30 +0400
committerJames R. McKaskill <james@foobar.co.nz>2012-04-30 03:17:21 +0400
commit084350e2a616c4fe59284d7d6ebbfa93ad6f1662 (patch)
treed95b14311d3a3df2a39b6c416f30a0f47cb40fc2 /ffi.h
parent4dff31f125d5830cc09d1e12a962ec166ba73c57 (diff)
fix parsing of long double with msvc
Diffstat (limited to 'ffi.h')
-rw-r--r--ffi.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/ffi.h b/ffi.h
index fc52a28..d2a8b0d 100644
--- a/ffi.h
+++ b/ffi.h
@@ -245,12 +245,6 @@ extern int next_unnamed_key;
extern int niluv_key;
extern int asmname_key;
-#if LUA_VERSION_NUM == 501
-#define push_niluv(L) push_upval(L, &niluv_key)
-#else
-#define push_niluv(L) lua_pushnil(L)
-#endif
-
int equals_upval(lua_State* L, int idx, int* key);
void push_upval(lua_State* L, int* key);
void set_upval(lua_State* L, int* key);