aboutsummaryrefslogtreecommitdiff
path: root/build2/target
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-01-19 12:45:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-01-19 12:45:04 +0200
commit5607313a91e5ca0113b1f8b9acfd02c1fb105346 (patch)
treeb14fd2737b88f90e9d142d8e6eff36876e0f8b5a /build2/target
parent8ecc2d18bf86b1021a31a2e5d01e71afbaa1efd0 (diff)
Get rid of project_name_pool
With small string optimizations this is most likely a hindrance rather that an optimization.
Diffstat (limited to 'build2/target')
-rw-r--r--build2/target6
1 files changed, 4 insertions, 2 deletions
diff --git a/build2/target b/build2/target
index dd9461c..48c5ebc 100644
--- a/build2/target
+++ b/build2/target
@@ -748,12 +748,14 @@ namespace build2
return target != nullptr ? target->name : prerequisite.get ().name;
}
- const string*
+ const optional<string>&
proj () const
{
// Target cannot be project-qualified.
//
- return target != nullptr ? nullptr : prerequisite.get ().proj;
+ return target != nullptr
+ ? prerequisite_key::nullproj
+ : prerequisite.get ().proj;
}
target_type&