diff options
author | Lua Team <team@lua.org> | 2006-02-07 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2006-02-07 12:00:00 +0000 |
commit | 43fb64048e381a76d6cd363dedd9ccc8a85b9b31 (patch) | |
tree | 98ca9eb0375499f20a4ca13d2cbbc4451f6e9477 /src/luaconf.h | |
parent | b487a3dce43e449acf3852ec56345e2860cfeab7 (diff) | |
download | lua-github-5.1-rc3.tar.gz |
Lua 5.1-rc35.1-rc3
Diffstat (limited to 'src/luaconf.h')
-rw-r--r-- | src/luaconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/luaconf.h b/src/luaconf.h index 56705985..3f3e2bbe 100644 --- a/src/luaconf.h +++ b/src/luaconf.h @@ -1,5 +1,5 @@ /* -** $Id: luaconf.h,v 1.79 2006/01/23 19:51:43 roberto Exp $ +** $Id: luaconf.h,v 1.80 2006/01/27 13:54:39 roberto Exp $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -541,7 +541,7 @@ */ /* On a Pentium, resort to a trick */ -#if !defined(LUA_ANSI) && !defined(__SSE2__) && \ +#if defined(LUA_NUMBER_DOUBLE) && !defined(LUA_ANSI) && !defined(__SSE2__) && \ (defined(__i386) || defined (_M_IX86) || defined(__i386__)) union luai_Cast { double l_d; long l_l; }; #define lua_number2int(i,d) \ |