diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-05-31 15:24:36 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-05-31 15:24:36 -0300 |
commit | 9b7dddad7d3f4546f838834d9674eaf0f2fca3dd (patch) | |
tree | cf0f283b5177d481023d0724d1c08a95d7482005 /lobject.h | |
parent | 3f04a9f2c07bc06dddbc473178b314f1fd686701 (diff) | |
download | lua-9b7dddad7d3f4546f838834d9674eaf0f2fca3dd.tar.gz lua-9b7dddad7d3f4546f838834d9674eaf0f2fca3dd.tar.bz2 lua-9b7dddad7d3f4546f838834d9674eaf0f2fca3dd.zip |
no need for two different implementations for equality (one raw and
one with metamethods)
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.53 2011/05/05 19:43:14 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.54 2011/05/26 17:12:31 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -431,11 +431,11 @@ typedef struct Table { | |||
431 | 431 | ||
432 | LUAI_DDEC const TValue luaO_nilobject_; | 432 | LUAI_DDEC const TValue luaO_nilobject_; |
433 | 433 | ||
434 | |||
434 | LUAI_FUNC int luaO_int2fb (unsigned int x); | 435 | LUAI_FUNC int luaO_int2fb (unsigned int x); |
435 | LUAI_FUNC int luaO_fb2int (int x); | 436 | LUAI_FUNC int luaO_fb2int (int x); |
436 | LUAI_FUNC int luaO_ceillog2 (unsigned int x); | 437 | LUAI_FUNC int luaO_ceillog2 (unsigned int x); |
437 | LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2); | 438 | LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2); |
438 | LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2); | ||
439 | LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result); | 439 | LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result); |
440 | LUAI_FUNC int luaO_hexavalue (int c); | 440 | LUAI_FUNC int luaO_hexavalue (int c); |
441 | LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt, | 441 | LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt, |