diff options
Diffstat (limited to 'lmem.h')
-rw-r--r-- | lmem.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lmem.h,v 1.38 2011/12/02 13:26:54 roberto Exp $ | 2 | ** $Id: lmem.h,v 1.39 2012/11/14 17:21:34 roberto Exp roberto $ |
3 | ** Interface to Memory Manager | 3 | ** Interface to Memory Manager |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -18,7 +18,7 @@ | |||
18 | ** This macro avoids the runtime division MAX_SIZET/(e), as 'e' is | 18 | ** This macro avoids the runtime division MAX_SIZET/(e), as 'e' is |
19 | ** always constant. | 19 | ** always constant. |
20 | ** The macro is somewhat complex to avoid warnings: | 20 | ** The macro is somewhat complex to avoid warnings: |
21 | ** +1 avoids warnings of "comparsion has constant result"; | 21 | ** +1 avoids warnings of "comparison has constant result"; |
22 | ** cast to 'void' avoids warnings of "value unused". | 22 | ** cast to 'void' avoids warnings of "value unused". |
23 | */ | 23 | */ |
24 | #define luaM_reallocv(L,b,on,n,e) \ | 24 | #define luaM_reallocv(L,b,on,n,e) \ |