summaryrefslogtreecommitdiff
path: root/src/lj_obj.h
diff options
context:
space:
mode:
authorMike Pall <mike>2012-07-03 13:19:32 +0200
committerMike Pall <mike>2012-07-03 13:19:32 +0200
commit17d3fc47f30f8d8e62231252ce41f4feba71aa2f (patch)
tree6134124f9357a0f4ca821556de644337491e4e0b /src/lj_obj.h
parentc740a302238cf650dd7fef6ebed8aeb878cf0c1d (diff)
downloadluajit2-17d3fc47f30f8d8e62231252ce41f4feba71aa2f.tar.gz
Avoid pesky compiler warnings about C++ keywords (eh?).
Diffstat (limited to 'src/lj_obj.h')
-rw-r--r--src/lj_obj.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_obj.h b/src/lj_obj.h
index d7e8ec09..4ec67aed 100644
--- a/src/lj_obj.h
+++ b/src/lj_obj.h
@@ -264,7 +264,7 @@ enum {
/* C data object. Payload follows. */
typedef struct GCcdata {
GCHeader;
- uint16_t typeid; /* C type ID. */
+ uint16_t ctypeid; /* C type ID. */
} GCcdata;
/* Prepended to variable-sized or realigned C data objects. */