diff options
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/types.cpp b/src/types.cpp index dadbe0a62..09b91ee34 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -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 { \ |