diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-12-16 12:30:22 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-12-16 12:30:22 -0200 |
commit | a8f8c7fd80a5c7e630fd4bf7f858d05024f6b434 (patch) | |
tree | b5193ced2c4516a8fe4c6a5af05e0d7d5c27d49c /lvm.h | |
parent | 1a19893d6f8ee16944168a3f2c99002f70522f4c (diff) | |
download | lua-a8f8c7fd80a5c7e630fd4bf7f858d05024f6b434.tar.gz lua-a8f8c7fd80a5c7e630fd4bf7f858d05024f6b434.tar.bz2 lua-a8f8c7fd80a5c7e630fd4bf7f858d05024f6b434.zip |
integer exponentiation with negative exponent is invalid
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 2.22 2013/04/29 17:12:50 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.23 2013/05/02 12:31:26 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -43,7 +43,7 @@ LUAI_FUNC void luaV_execute (lua_State *L); | |||
43 | LUAI_FUNC void luaV_concat (lua_State *L, int total); | 43 | LUAI_FUNC void luaV_concat (lua_State *L, int total); |
44 | LUAI_FUNC lua_Integer luaV_div (lua_State *L, lua_Integer x, lua_Integer y); | 44 | LUAI_FUNC lua_Integer luaV_div (lua_State *L, lua_Integer x, lua_Integer y); |
45 | LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y); | 45 | LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y); |
46 | LUAI_FUNC lua_Integer luaV_pow (lua_Integer x, lua_Integer y); | 46 | LUAI_FUNC lua_Integer luaV_pow (lua_State *L, lua_Integer x, lua_Integer y); |
47 | LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb); | 47 | LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb); |
48 | 48 | ||
49 | #endif | 49 | #endif |