diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-23 16:12:58 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-23 16:12:58 +0200 |
commit | e5fedf8a485d7b1b7d26e08557ca40c863d3255b (patch) | |
tree | 04c7a0c014132fcf7d4cbd89fa1003db295ba82d /build/rule | |
parent | 0bd954eabb236bc9530220ffbc076967d35e33f4 (diff) |
Rename "select" to "apply"
Diffstat (limited to 'build/rule')
-rw-r--r-- | build/rule | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -22,7 +22,7 @@ namespace build match (target&, const std::string& hint) const = 0; virtual recipe - select (target&, void*) const = 0; + apply (target&, void*) const = 0; }; typedef std::unordered_map< @@ -40,7 +40,7 @@ namespace build match (target&, const std::string& hint) const; virtual recipe - select (target&, void*) const; + apply (target&, void*) const; static target_state update (target&); @@ -53,7 +53,7 @@ namespace build match (target&, const std::string& hint) const; virtual recipe - select (target&, void*) const; + apply (target&, void*) const; static target_state update (target&); |