From c76ff457079bf5901a6bb55377c14aeee856a354 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 16 Mar 2016 16:02:06 +0200 Subject: Cleanup variable typing --- build2/dist/module.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'build2/dist') 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 ("dist"); - v.find ("dist.package", string_type); + v.find ("dist.package"); - v.find ("dist.root", dir_path_type); - v.find ("config.dist.root", dir_path_type); + v.find ("dist.root"); + v.find ("config.dist.root"); //@@ VAR type // - v.find ("dist.cmd", string_type); - v.find ("config.dist.cmd", string_type); + v.find ("dist.cmd"); + v.find ("config.dist.cmd"); - v.find ("dist.archives", strings_type); - v.find ("config.dist.archives", strings_type); + v.find ("dist.archives"); + v.find ("config.dist.archives"); } } -- cgit v1.1