aboutsummaryrefslogtreecommitdiff
path: root/build2/dist
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-03-16 16:02:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-03-16 16:02:06 +0200
commitc76ff457079bf5901a6bb55377c14aeee856a354 (patch)
tree6a7d0c7606370b54fa77369dd101d035aad08918 /build2/dist
parent20677fb264e743b8e5423af31a7d8dc06cf509f6 (diff)
Cleanup variable typing
Diffstat (limited to 'build2/dist')
-rw-r--r--build2/dist/module.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/build2/dist/module.cxx b/build2/dist/module.cxx
index a205a72..6f40b33 100644
--- a/build2/dist/module.cxx
+++ b/build2/dist/module.cxx
@@ -39,20 +39,20 @@ namespace build2
{
auto& v (var_pool);
- v.find ("dist", bool_type);
+ v.find<bool> ("dist");
- v.find ("dist.package", string_type);
+ v.find<string> ("dist.package");
- v.find ("dist.root", dir_path_type);
- v.find ("config.dist.root", dir_path_type);
+ v.find<dir_path> ("dist.root");
+ v.find<dir_path> ("config.dist.root");
//@@ VAR type
//
- v.find ("dist.cmd", string_type);
- v.find ("config.dist.cmd", string_type);
+ v.find<string> ("dist.cmd");
+ v.find<string> ("config.dist.cmd");
- v.find ("dist.archives", strings_type);
- v.find ("config.dist.archives", strings_type);
+ v.find<strings> ("dist.archives");
+ v.find<strings> ("config.dist.archives");
}
}