diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-26 14:12:56 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-30 13:04:37 +0300 |
commit | d90ac405ae50f84a3cf4ba0b806cca1c89f81cff (patch) | |
tree | 3f66be39a80a0a32cbba332e34b418fa1fc9ad02 /build2/context.hxx | |
parent | e92a1aab0e1c7c9ba8e6ab9a7049207468ca53fc (diff) |
Make project variable to be of project_name type
Diffstat (limited to 'build2/context.hxx')
-rw-r--r-- | build2/context.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/context.hxx b/build2/context.hxx index cfe770f..cf7eee6 100644 --- a/build2/context.hxx +++ b/build2/context.hxx @@ -408,11 +408,11 @@ namespace build2 // Return the project name or empty string if unnamed. // - inline const string& + inline const project_name& project (const scope& root) { auto l (root[var_project]); - return l ? cast<string> (l) : empty_string; + return l ? cast<project_name> (l) : empty_project_name; } // Return the src/out directory corresponding to the given out/src. The |