summaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/parse.c b/parse.c
index 8c281f4..299e54d 100644
--- a/parse.c
+++ b/parse.c
@@ -167,10 +167,10 @@ static Keyword builtin_type_to_kw(BuiltinType t) {
/* returns the number of characters written, not including the null character */
static size_t type_to_str_(Type *t, char *buffer, size_t bufsize) {
- if ((t->flags & TYPE_IS_RESOLVED) && t->was_expr) {
- /* TODO: improve this (see also: case TYPE_EXPR) */
- return str_copy(buffer, bufsize, "<type expression>");
- }
+ /* if ((t->flags & TYPE_IS_RESOLVED) && t->was_expr) { */
+ /* /\* TODO: improve this (see also: case TYPE_EXPR) *\/ */
+ /* return str_copy(buffer, bufsize, "<type expression>"); */
+ /* } */
switch (t->kind) {
case TYPE_VOID:
return str_copy(buffer, bufsize, "void");