From 771f4176ad578e1967e0407c31cefaf1c38081aa Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 28 Apr 2020 07:48:17 +0200 Subject: Rename target::member to target::adhoc_member --- libbuild2/install/rule.cxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'libbuild2/install') diff --git a/libbuild2/install/rule.cxx b/libbuild2/install/rule.cxx index 8a5d174..b8d6a34 100644 --- a/libbuild2/install/rule.cxx +++ b/libbuild2/install/rule.cxx @@ -978,7 +978,9 @@ namespace build2 // Then installable ad hoc group members, if any. // - for (const target* m (t.member); m != nullptr; m = m->member) + for (const target* m (t.adhoc_member); + m != nullptr; + m = m->adhoc_member) { if (const file* mf = m->is_a ()) { @@ -1256,7 +1258,9 @@ namespace build2 // we would have to do it in reverse, but that's not easy (it's a // single-linked list). // - for (const target* m (t.member); m != nullptr; m = m->member) + for (const target* m (t.adhoc_member); + m != nullptr; + m = m->adhoc_member) { if (const file* mf = m->is_a ()) { -- cgit v1.1