diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-05-29 16:30:07 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-05-29 16:30:07 -0300 |
commit | 5ebdd326b625f32d34ac4036a97d7c565499eaf8 (patch) | |
tree | 440f0e63d4db1305b4995b76230ddff3699bcf53 | |
parent | 84db17b6fc366b26eca33d4d5f6b3a204518e9dd (diff) | |
download | lua-5ebdd326b625f32d34ac4036a97d7c565499eaf8.tar.gz lua-5ebdd326b625f32d34ac4036a97d7c565499eaf8.tar.bz2 lua-5ebdd326b625f32d34ac4036a97d7c565499eaf8.zip |
detail (to avoid warnings of unused variable)
-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.91 2014/05/15 20:28:39 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.92 2014/05/15 20:41:27 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 | */ |
@@ -246,7 +246,7 @@ typedef struct lua_TValue TValue; | |||
246 | #define setobj(L,obj1,obj2) \ | 246 | #define setobj(L,obj1,obj2) \ |
247 | { const TValue *io2=(obj2); TValue *io1=(obj1); \ | 247 | { const TValue *io2=(obj2); TValue *io1=(obj1); \ |
248 | io1->value_ = io2->value_; io1->tt_ = io2->tt_; \ | 248 | io1->value_ = io2->value_; io1->tt_ = io2->tt_; \ |
249 | checkliveness(G(L),io1); } | 249 | (void)L; checkliveness(G(L),io1); } |
250 | 250 | ||
251 | 251 | ||
252 | /* | 252 | /* |