diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-06-15 09:48:24 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-06-15 09:48:24 +0200 |
commit | e3c1bd90fd2b26225dbcbda27472ad72f1c575d4 (patch) | |
tree | cf9d1991659a9f933704fe58b4d05f7b747911e1 /libbuild2/target.hxx | |
parent | 493a375346522a0944d4fb5893cc4740e5b2f743 (diff) |
Fix incorrect memory order in target::matched() call
Diffstat (limited to 'libbuild2/target.hxx')
-rw-r--r-- | libbuild2/target.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/target.hxx b/libbuild2/target.hxx index 69714fc..aa3df7f 100644 --- a/libbuild2/target.hxx +++ b/libbuild2/target.hxx @@ -869,7 +869,7 @@ namespace build2 // This function can only be called during the match or execute phases. // // If you need to observe something in the matched target (e.g., the - // matched rule), use memory_order_acquire. + // matched rule or recipe), use memory_order_acquire. // bool matched (action, memory_order mo = memory_order_relaxed) const; |