diff options
| author | gingerBill <bill@gingerbill.org> | 2019-12-29 21:10:27 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-12-29 21:10:27 +0000 |
| commit | 2252d992d79a39c0c9d1ad0eeb312b6e75195f8f (patch) | |
| tree | 56e95fca5a4b83d0132eb3f38f434908395d2d96 /src/entity.cpp | |
| parent | 2d70a784d16c5fa10f830e12c138f275ae5bb018 (diff) | |
Add `-disable-assert` to disable the code generation of the built-in run-time 'assert' procedure
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 0c7bc8530..8273af3f1 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -55,6 +55,9 @@ enum EntityFlag { EntityFlag_CVarArg = 1<<21, EntityFlag_AutoCast = 1<<22, + + EntityFlag_Disabled = 1<<24, + }; enum EntityState { |