diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-08 16:06:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-08 16:06:59 -0300 |
commit | 6f2b8e21c4ea9d730ccfe7e41bfc178704d1fc75 (patch) | |
tree | 8c95c0decfca59a1ad9b82f925ae8d3045f40220 /ltm.h | |
parent | c5dc521d654cbe9b04310a633e94dbcf1927e0f6 (diff) | |
download | lua-6f2b8e21c4ea9d730ccfe7e41bfc178704d1fc75.tar.gz lua-6f2b8e21c4ea9d730ccfe7e41bfc178704d1fc75.tar.bz2 lua-6f2b8e21c4ea9d730ccfe7e41bfc178704d1fc75.zip |
added 'const' to 'Proto*' when possible
Diffstat (limited to 'ltm.h')
-rw-r--r-- | ltm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.h,v 2.36 2018/05/23 14:41:20 roberto Exp roberto $ | 2 | ** $Id: ltm.h,v 2.37 2018/06/01 16:51:34 roberto Exp roberto $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -84,7 +84,7 @@ LUAI_FUNC int luaT_callorderiTM (lua_State *L, const TValue *p1, int v2, | |||
84 | int inv, TMS event); | 84 | int inv, TMS event); |
85 | 85 | ||
86 | LUAI_FUNC void luaT_adjustvarargs (lua_State *L, int nfixparams, | 86 | LUAI_FUNC void luaT_adjustvarargs (lua_State *L, int nfixparams, |
87 | struct CallInfo *ci, Proto *p); | 87 | struct CallInfo *ci, const Proto *p); |
88 | LUAI_FUNC void luaT_getvarargs (lua_State *L, struct CallInfo *ci, | 88 | LUAI_FUNC void luaT_getvarargs (lua_State *L, struct CallInfo *ci, |
89 | StkId where, int wanted); | 89 | StkId where, int wanted); |
90 | 90 | ||