Remove debug bug

This commit is contained in:
Ginger Bill
2017-05-03 11:01:17 +01:00
parent cc6282a6e3
commit 3b25f924cb
2 changed files with 2 additions and 6 deletions
-4
View File
@@ -557,10 +557,6 @@ Entity *scope_lookup_entity(Scope *s, String name) {
Entity *scope_insert_entity(Scope *s, Entity *entity) {
String name = entity->token.string;
if (str_eq(name, str_lit("output"))) {
gb_printf_err("Here! %.*s\n", LIT(name));
}
HashKey key = hash_string(name);
Entity **found = map_entity_get(&s->elements, key);