diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-13 21:00:42 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-13 21:00:42 +0100 |
| commit | c3b510c2d9adf1a9281285fc711a28187288af75 (patch) | |
| tree | 10c63d92cb2e014135f42bf9066907653ab395b3 /src/entity.cpp | |
| parent | e7fc24e48c39f1aa9f886d13608ad8e22f167027 (diff) | |
C-style `c_vararg`s (Not heavily tested)
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp index 6fa89d652..44464b49c 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -43,6 +43,9 @@ enum EntityFlag { EntityFlag_Value = 1<<9, EntityFlag_Sret = 1<<10, EntityFlag_BitFieldValue = 1<<11, + + EntityFlag_CVarArg = 1<<20, + }; // Zero value means the overloading process is not yet done |