aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-05-28 12:06:50 +0100
committergingerBill <bill@gingerbill.org>2018-05-28 12:06:50 +0100
commitb7858a66b94e87830c0c777547c4f411c4d8d259 (patch)
tree3cb6eceae8ec08bc54de7a948645747f5d1e6082 /src/entity.cpp
parent4e203feaf45d1f3beb9f18ead4f20553b52e11f9 (diff)
Parallelize per file rather than per package
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index 31081e5ce..aea01d6ac 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -76,7 +76,7 @@ struct Entity {
AstNode * identifier; // Can be nullptr
DeclInfo * decl_info;
DeclInfo * parent_proc_decl; // nullptr if in file/global scope
- AstPackage *package;
+ AstPackage *pkg;
// TODO(bill): Cleanup how `using` works for entities
Entity * using_parent;