diff options
| author | gingerBill <bill@gingerbill.org> | 2017-12-10 11:35:11 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2017-12-10 11:35:11 +0000 |
| commit | 3c6f90e5524d38bdd30750eb04441a1897bcd8dd (patch) | |
| tree | 50dc37f196b7a2d0c40e1382950511654d1333a2 /src/entity.cpp | |
| parent | 3703ca4df47134e0c274cf5096d14c9323331ff0 (diff) | |
Fix proc groups from import names
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/entity.cpp b/src/entity.cpp index ff3fd5c20..3f81a066d 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -82,17 +82,17 @@ struct Entity { i32 field_index; i32 field_src_index; ExactValue default_value; + Entity * foreign_library; + AstNode * foreign_library_ident; + String link_name; + String link_prefix; + String thread_local_model; bool default_is_nil; bool default_is_undef; bool default_is_location; bool is_immutable; - String thread_local_model; bool is_foreign; bool is_export; - Entity * foreign_library; - AstNode * foreign_library_ident; - String link_name; - String link_prefix; } Variable; struct { bool is_type_alias; |