Remove constant from switch for strings

This commit is contained in:
gingerBill
2018-02-17 18:22:43 +00:00
parent c4d2d287fc
commit c341597657
2 changed files with 14 additions and 16 deletions
+6 -6
View File
@@ -117,12 +117,12 @@ struct TypeStruct {
TYPE_KIND(Slice, struct { Type *elem; }) \
TYPE_KIND(DynamicArray, struct { Type *elem; }) \
TYPE_KIND(Map, struct { \
Type * key; \
Type * value; \
Type * entry_type; \
Type * generated_struct_type; \
Type * internal_type; \
Type * lookup_result_type; \
Type *key; \
Type *value; \
Type *entry_type; \
Type *generated_struct_type; \
Type *internal_type; \
Type *lookup_result_type; \
}) \
TYPE_KIND(Struct, TypeStruct) \
TYPE_KIND(Enum, struct { \