From 455ad2bf70eb0a6e29c8c7179e1c40c18bd8ee2f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 1 Jul 2015 17:37:23 +0200 Subject: Get rid of accessors/modifiers in cli.cxx target --- build/cli/target.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build/cli/target.cxx') diff --git a/build/cli/target.cxx b/build/cli/target.cxx index 2f8b54c..95198e1 100644 --- a/build/cli/target.cxx +++ b/build/cli/target.cxx @@ -32,8 +32,8 @@ namespace build group_view cli_cxx:: group_members (action) const { - return m[0] != nullptr - ? group_view {m, (m[2] != nullptr ? 3U : 2U)} + return h != nullptr + ? group_view {m, (i != nullptr ? 3U : 2U)} : group_view {nullptr, 0}; } @@ -43,7 +43,7 @@ namespace build // The rule has been matched which means the members should // be resolved and paths assigned. // - return file_mtime (h ()->path ()); + return file_mtime (h->path ()); } const target_type cli_cxx::static_type -- cgit v1.1