diff options
| author | gingerBill <bill@gingerbill.org> | 2018-05-28 12:06:50 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-05-28 12:06:50 +0100 |
| commit | b7858a66b94e87830c0c777547c4f411c4d8d259 (patch) | |
| tree | 3cb6eceae8ec08bc54de7a948645747f5d1e6082 /src/entity.cpp | |
| parent | 4e203feaf45d1f3beb9f18ead4f20553b52e11f9 (diff) | |
Parallelize per file rather than per package
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 2 |
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; |