aboutsummaryrefslogtreecommitdiff
path: root/build2/install/rule.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-02-05 12:10:55 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-02-05 12:10:55 +0200
commit3954be70024fd60c20c658f08025eff7654a8943 (patch)
treec1c869599c88d348e8dad9cc2966a08519acc6cf /build2/install/rule.cxx
parent1bb564a690e2661094e9071d4003638390a5a6fe (diff)
Rename prerequisite_member::target to prerequisite_member::member
Diffstat (limited to 'build2/install/rule.cxx')
-rw-r--r--build2/install/rule.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/install/rule.cxx b/build2/install/rule.cxx
index 2b5d048..8bf58aa 100644
--- a/build2/install/rule.cxx
+++ b/build2/install/rule.cxx
@@ -55,7 +55,7 @@ namespace build2
const target* alias_rule::
filter (action a, const target& t, prerequisite_iterator& i) const
{
- assert (i->target == nullptr);
+ assert (i->member == nullptr);
return filter (a, t, i->prerequisite);
}
@@ -218,7 +218,7 @@ namespace build2
const target* file_rule::
filter (action a, const target& t, prerequisite_iterator& i) const
{
- assert (i->target == nullptr);
+ assert (i->member == nullptr);
return filter (a, t, i->prerequisite);
}