aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-09-02 15:56:36 +0100
committergingerBill <bill@gingerbill.org>2018-09-02 15:56:36 +0100
commit220485a2d2cd180e7ff2a15bab66c867c06b05d7 (patch)
tree4b3df1aae33e7b2af9375b1f8e11d8c2b2b88a15 /src/entity.cpp
parenteb274cf31600814b2f808c80d43376b0e9e959f1 (diff)
`typeid` as keyword (ready to implement polymorphic name parameters)
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index 85e768f2c..2dd4a4be0 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -47,6 +47,7 @@ enum EntityFlag {
EntityFlag_PolyConst = 1<<13,
EntityFlag_NotExported = 1<<14,
+
EntityFlag_CVarArg = 1<<20,
EntityFlag_AutoCast = 1<<21,
};
@@ -113,9 +114,6 @@ struct Entity {
String link_prefix;
bool is_foreign;
bool is_export;
-
- // bool default_is_nil;
- // bool default_is_location;
bool is_immutable;
} Variable;
struct {