aboutsummaryrefslogtreecommitdiff
path: root/build/prerequisite
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-02-20 09:38:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-02-20 09:38:38 +0200
commit90ae462a44a1478e1c4be1568997b6873f6e688d (patch)
tree26af054dea912de192b243c174da23061c57c444 /build/prerequisite
parentc23346c4cda9e0c2318c302dc6014d3fef53a6d3 (diff)
Rename 'directory' to 'dir' in target, prerequisite
Diffstat (limited to 'build/prerequisite')
-rw-r--r--build/prerequisite4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/prerequisite b/build/prerequisite
index da90df4..d57f811 100644
--- a/build/prerequisite
+++ b/build/prerequisite
@@ -33,12 +33,12 @@ namespace build
std::string n,
const std::string* e,
scope_type& s)
- : type (t), directory (std::move (d)), name (std::move (n)), ext (e),
+ : type (t), dir (std::move (d)), name (std::move (n)), ext (e),
scope (s), target (0) {}
public:
const target_type_type& type;
- const path directory; // Normalized absolute or relative (to scope).
+ const path dir; // Normalized absolute or relative (to scope).
const std::string name;
const std::string* ext; // NULL if unspecified.
scope_type& scope;