diff options
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/types.cpp b/src/types.cpp index d941b5450..d49dd6a86 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -2448,8 +2448,12 @@ gbString write_type_to_string(gbString str, Type *type) { } } else { GB_ASSERT(var->kind == Entity_TypeName); + #if 0 str = gb_string_appendc(str, "type/"); str = write_type_to_string(str, var->type); + #else + str = gb_string_appendc(str, "type"); + #endif } } } |