aboutsummaryrefslogtreecommitdiff
path: root/build2/cli/target.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cli/target.cxx')
-rw-r--r--build2/cli/target.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/cli/target.cxx b/build2/cli/target.cxx
index 3f09d30..48dc95b 100644
--- a/build2/cli/target.cxx
+++ b/build2/cli/target.cxx
@@ -48,7 +48,7 @@ namespace build2
return file_mtime (h->path ());
}
- static target*
+ static pair<target*, optional<string>>
cli_cxx_factory (const target_type&,
dir_path d,
dir_path o,
@@ -66,7 +66,7 @@ namespace build2
targets.insert<cxx::cxx> (d, o, n, trace);
targets.insert<cxx::ixx> (d, o, n, trace);
- return new cli_cxx (move (d), move (o), move (n), move (e));
+ return make_pair (new cli_cxx (move (d), move (o), move (n)), move (e));
}
const target_type cli_cxx::static_type