diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-22 10:02:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-22 10:17:41 +0200 |
commit | b47a323f09f1f9ccece03ca4d84dbe7a47ff8177 (patch) | |
tree | 7c520e5878b1988425520424c5e372f7439636d9 /libbuild2/variable.ixx | |
parent | 1bbd6bdb1bbf6783aefd10392e5c0599318a927f (diff) |
Move global mutex shards to context
Diffstat (limited to 'libbuild2/variable.ixx')
-rw-r--r-- | libbuild2/variable.ixx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/variable.ixx b/libbuild2/variable.ixx index e5353ed..d341c26 100644 --- a/libbuild2/variable.ixx +++ b/libbuild2/variable.ixx @@ -772,7 +772,7 @@ namespace build2 else { if (v.type.load (memory_order_acquire) != var.type) - build2::typify_atomic (const_cast<value_data&> (v), *var.type, &var); + typify_atomic (*ctx, const_cast<value_data&> (v), *var.type, &var); } } |