diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-01-16 15:32:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-01-16 15:32:00 +0200 |
commit | 47751abc43dab40e0ac4a1523994fd533e6a3b22 (patch) | |
tree | bb61a346538ddb6945e8aff4c3919ce002c55a89 /build/path | |
parent | c106259517d7693ea8e24564bc890fe575d5edcd (diff) |
Add support for directory prefixes
For example:
cxx{driver ../{foo bar}}
cxx{driver} ../cxx{foo bar}
Diffstat (limited to 'build/path')
-rw-r--r-- | build/path | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -181,6 +181,12 @@ namespace build init (); } + basic_path (const string_type& s, size_type p, size_type n) + : path_ (s, p, n) + { + init (); + } + void swap (basic_path& p) { |