diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-10-22 11:48:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-10-26 13:29:24 +0200 |
commit | 668d521db19d35cfe8ea6ae0c0de3668bb216c76 (patch) | |
tree | 212956c3d5b6322a3acb710f99880cfeccb2e104 /libbuild2/target.hxx | |
parent | 3cdc5d8ceafeddf04aa8dea2ac76c954d3de116e (diff) |
WIP: rename match_rule() to match_rule_impl()
Diffstat (limited to 'libbuild2/target.hxx')
-rw-r--r-- | libbuild2/target.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbuild2/target.hxx b/libbuild2/target.hxx index fc733b6..78f3e49 100644 --- a/libbuild2/target.hxx +++ b/libbuild2/target.hxx @@ -178,7 +178,7 @@ namespace build2 struct match_extra { bool locked; // Normally true (see adhoc_rule::match() for background). - bool fallback; // True if matching a fallback rule (see match_rule()). + bool fallback; // True if matching a fallback rule (see match_rule_impl()). // When matching a rule, the caller may wish to request a subset of the // full functionality of performing the operation on the target. This is @@ -327,7 +327,7 @@ namespace build2 // Implementation details. // - // NOTE: see match_rule() in algorithms.cxx if changing anything here. + // NOTE: see match_rule_impl() in algorithms.cxx if changing anything here. // public: explicit @@ -2278,7 +2278,7 @@ namespace build2 // in C++, instead deriving from mtime_target directly and using a custom // members layout more appropriate for the group's semantics. To put it // another way, a group-based target should only be matched by an ad hoc - // recipe/rule (see match_rule() in algorithms.cxx for details). + // recipe/rule (see match_rule_impl() in algorithms.cxx for details). // class LIBBUILD2_SYMEXPORT group: public mtime_target { |