浏览代码

macro 'nvalue' removed (direct conversion from integer to double,
without an intermediate variable, can cause "excessive precision"

Roberto Ierusalimschy 12 年之前
父节点
当前提交
fa6ea831b3
共有 1 个文件被更改,包括 1 次插入4 次删除
  1. 1 4
      lobject.h

+ 1 - 4
lobject.h

@@ -1,5 +1,5 @@
 /*
 /*
-** $Id: lobject.h,v 2.75 2013/04/29 16:57:28 roberto Exp roberto $
+** $Id: lobject.h,v 2.76 2013/05/02 12:37:24 roberto Exp roberto $
 ** Type definitions for Lua objects
 ** Type definitions for Lua objects
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
@@ -153,9 +153,6 @@ typedef struct lua_TValue TValue;
 
 
 
 
 /* Macros to access values */
 /* Macros to access values */
-#define nvalue(o)  \
-  check_exp(ttisnumber(o), (ttisfloat(o) ? val_(o).n : cast_num(val_(o).i)))
-
 #define ivalue(o)	check_exp(ttisinteger(o), val_(o).i)
 #define ivalue(o)	check_exp(ttisinteger(o), val_(o).i)
 #define fltvalue(o)	check_exp(ttisfloat(o), val_(o).n)
 #define fltvalue(o)	check_exp(ttisfloat(o), val_(o).n)
 #define gcvalue(o)	check_exp(iscollectable(o), val_(o).gc)
 #define gcvalue(o)	check_exp(iscollectable(o), val_(o).gc)