aboutsummaryrefslogtreecommitdiff
path: root/build2/target.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-07-26 14:12:56 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-07-30 13:04:37 +0300
commitd90ac405ae50f84a3cf4ba0b806cca1c89f81cff (patch)
tree3f66be39a80a0a32cbba332e34b418fa1fc9ad02 /build2/target.hxx
parente92a1aab0e1c7c9ba8e6ab9a7049207468ca53fc (diff)
Make project variable to be of project_name type
Diffstat (limited to 'build2/target.hxx')
-rw-r--r--build2/target.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/build2/target.hxx b/build2/target.hxx
index 0f8c8ea..db5de67 100644
--- a/build2/target.hxx
+++ b/build2/target.hxx
@@ -882,14 +882,12 @@ namespace build2
return member != nullptr ? member->dir : prerequisite.dir;
}
- const optional<string>&
+ const optional<project_name>&
proj () const
{
// Member cannot be project-qualified.
//
- return member != nullptr
- ? prerequisite_key::nullproj
- : prerequisite.proj;
+ return member != nullptr ? nullopt_project_name : prerequisite.proj;
}
const scope_type&