diff options
author | Mike Pall <mike> | 2010-04-25 03:32:29 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-04-25 03:32:29 +0200 |
commit | 721b73fecbbeda5b5cb76628511c5b3fac41eb4d (patch) | |
tree | ce72efaa313ab16eda652e4d277413c31a8d2af3 /src/lj_obj.h | |
parent | 3a32bbc7cb5c2287e8d4e24e362281c165f50976 (diff) | |
download | luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.tar.gz luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.tar.bz2 luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.zip |
Turn traces into true GC objects (GCtrace).
Diffstat (limited to 'src/lj_obj.h')
-rw-r--r-- | src/lj_obj.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_obj.h b/src/lj_obj.h index 71146dfc..b01bd97b 100644 --- a/src/lj_obj.h +++ b/src/lj_obj.h | |||
@@ -195,7 +195,7 @@ typedef const TValue cTValue; | |||
195 | #define LJ_TTHREAD (-7) | 195 | #define LJ_TTHREAD (-7) |
196 | #define LJ_TPROTO (-8) | 196 | #define LJ_TPROTO (-8) |
197 | #define LJ_TFUNC (-9) | 197 | #define LJ_TFUNC (-9) |
198 | /* Unused (-10) */ | 198 | #define LJ_TTRACE (-10) |
199 | #define LJ_TTAB (-11) | 199 | #define LJ_TTAB (-11) |
200 | #define LJ_TUDATA (-12) | 200 | #define LJ_TUDATA (-12) |
201 | /* This is just the canonical number type used in some places. */ | 201 | /* This is just the canonical number type used in some places. */ |