aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-02-24 19:03:29 +0000
committergingerBill <bill@gingerbill.org>2018-02-24 19:03:29 +0000
commit35ba5771a5dbe5fec3fea8804fb46fe843478830 (patch)
treed46c33864d8a2b14a2bba7c860ce2cf875f2bc39 /src/entity.cpp
parentb2461f7192684f979301be9f174237e740ec28c6 (diff)
Replace `compile_assert` with `#assert`
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index f591287d6..14efe6b60 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -303,8 +303,6 @@ Entity *make_entity_label(gbAllocator a, Scope *scope, Token token, Type *type,
return entity;
}
-
-
Entity *make_entity_dummy_variable(gbAllocator a, Scope *scope, Token token) {
token.string = str_lit("_");
return make_entity_variable(a, scope, token, nullptr, false);