diff options
Diffstat (limited to 'identifiers.c')
-rw-r--r-- | identifiers.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/identifiers.c b/identifiers.c index a70028d..187d723 100644 --- a/identifiers.c +++ b/identifiers.c @@ -92,9 +92,7 @@ static Identifier ident_insert(Identifiers *ids, char **s) { static char *ident_to_str(Identifier i) { char *str = err_malloc(i->len + 1); - /* for some reason, GCC thinks that i->len is -1 when this is called from type_to_str_ (in release mode) - TODO: test this now (some stuff was changed) - */ + /* for some reason, GCC thinks that i->len is -1 when this is called from type_to_str_ (in release mode) */ #if !defined(__clang__) && defined(__GNUC__) #pragma GCC diagnostic push |