diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-05-03 11:01:17 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-05-03 11:01:17 +0100 |
| commit | 3b25f924cbb56882e77daccf229258509022d3be (patch) | |
| tree | 1246bb357cc0c4a3eb23ec3964c4a56f718dd634 /src/checker.c | |
| parent | cc6282a6e3463dd2b0192789fbd373a6d8f59a3d (diff) | |
Remove debug bug
Diffstat (limited to 'src/checker.c')
| -rw-r--r-- | src/checker.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/checker.c b/src/checker.c index 9c40cd348..c2d5a3bf6 100644 --- a/src/checker.c +++ b/src/checker.c @@ -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); |