aboutsummaryrefslogtreecommitdiff
path: root/build/spec
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-04-13 15:50:17 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-04-13 15:50:17 +0200
commitace1743f7f78bb13f99553d6e97ad1beecf1ba99 (patch)
tree595bc9dad989e44f4be9a67e351219f3248dc5f0 /build/spec
parent534f9d8db025d58c9ce23f3b81a37e8c34386a27 (diff)
Add separate type to represent directory paths
Diffstat (limited to 'build/spec')
-rw-r--r--build/spec4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/spec b/build/spec
index ace0400..4a6036a 100644
--- a/build/spec
+++ b/build/spec
@@ -21,10 +21,10 @@ namespace build
explicit
targetspec (name_type n): name (std::move (n)) {}
- targetspec (path sb, name_type n)
+ targetspec (dir_path sb, name_type n)
: src_base (std::move (sb)), name (std::move (n)) {}
- path src_base;
+ dir_path src_base;
name_type name;
};