diff options
| author | gingerBill <bill@gingerbill.org> | 2021-07-27 21:14:06 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-07-27 21:14:06 +0100 |
| commit | e17593be9446865a24a62c0915368e02a9ff4948 (patch) | |
| tree | 0c977421426ba890cf9df295889d40bf455ef0c4 /src/checker.cpp | |
| parent | 44aa69748c4e2b452a976f0977efa91d08413f2d (diff) | |
Remove dead mutex
Diffstat (limited to 'src/checker.cpp')
| -rw-r--r-- | src/checker.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index ef4b44104..4a4e2251c 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -865,7 +865,6 @@ void init_checker_info(CheckerInfo *i) { gb_mutex_init(&i->lazy_mutex); mutex_init(&i->type_info_mutex); - mutex_init(&i->scope_mutex); mutex_init(&i->deps_mutex); mutex_init(&i->identifier_uses_mutex); mutex_init(&i->foreign_mutex); @@ -897,7 +896,6 @@ void destroy_checker_info(CheckerInfo *i) { gb_mutex_destroy(&i->gen_types_mutex); gb_mutex_destroy(&i->lazy_mutex); mutex_destroy(&i->type_info_mutex); - mutex_destroy(&i->scope_mutex); mutex_destroy(&i->deps_mutex); mutex_destroy(&i->identifier_uses_mutex); mutex_destroy(&i->foreign_mutex); |