From e496b95881dffa3eda352cec6aa3249c6062d40a Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 25 Nov 2018 16:19:17 +0000 Subject: Subset and superset operators for `bit_set`: < <= > >= --- src/entity.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/entity.cpp') diff --git a/src/entity.cpp b/src/entity.cpp index 22c7a24f4..707a04962 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -85,14 +85,14 @@ struct Entity { Token token; Scope * scope; Type * type; - Ast * identifier; // Can be nullptr + Ast * identifier; // Can be nullptr DeclInfo * decl_info; DeclInfo * parent_proc_decl; // nullptr if in file/global scope AstPackage *pkg; // TODO(bill): Cleanup how `using` works for entities Entity * using_parent; - Ast * using_expr; + Ast * using_expr; isize order_in_src; String deprecated_message; @@ -109,7 +109,7 @@ struct Entity { String thread_local_model; Entity * foreign_library; - Ast * foreign_library_ident; + Ast * foreign_library_ident; String link_name; String link_prefix; bool is_foreign; @@ -117,9 +117,9 @@ struct Entity { bool is_immutable; } Variable; struct { - bool is_type_alias; Type * type_parameter_specialization; String ir_mangled_name; + bool is_type_alias; } TypeName; struct { u64 tags; -- cgit v1.2.3