aboutsummaryrefslogtreecommitdiff
path: root/build2/bin
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/bin
parent20677fb264e743b8e5423af31a7d8dc06cf509f6 (diff)
Cleanup variable typing
Diffstat (limited to 'build2/bin')
-rw-r--r--build2/bin/module.cxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/build2/bin/module.cxx b/build2/bin/module.cxx
index eb4d771..702e762 100644
--- a/build2/bin/module.cxx
+++ b/build2/bin/module.cxx
@@ -47,22 +47,22 @@ namespace build2
{
auto& v (var_pool);
- v.find ("config.bin.ar", string_type); //@@ VAR path_type
- v.find ("config.bin.ranlib", string_type); //@@ VAR path_type
-
- v.find ("config.bin.lib", string_type);
- v.find ("config.bin.exe.lib", strings_type);
- v.find ("config.bin.liba.lib", strings_type);
- v.find ("config.bin.libso.lib", strings_type);
- v.find ("config.bin.rpath", strings_type); //@@ VAR paths_type
-
- v.find ("bin.lib", string_type);
- v.find ("bin.exe.lib", strings_type);
- v.find ("bin.liba.lib", strings_type);
- v.find ("bin.libso.lib", strings_type);
- v.find ("bin.rpath", strings_type); //@@ VAR paths_type
-
- v.find ("bin.libprefix", string_type);
+ v.find<string> ("config.bin.ar"); //@@ VAR path_type
+ v.find<string> ("config.bin.ranlib"); //@@ VAR path_type
+
+ v.find<string> ("config.bin.lib");
+ v.find<strings> ("config.bin.exe.lib");
+ v.find<strings> ("config.bin.liba.lib");
+ v.find<strings> ("config.bin.libso.lib");
+ v.find<strings> ("config.bin.rpath"); //@@ VAR paths_type
+
+ v.find<string> ("bin.lib");
+ v.find<strings> ("bin.exe.lib");
+ v.find<strings> ("bin.liba.lib");
+ v.find<strings> ("bin.libso.lib");
+ v.find<strings> ("bin.rpath"); //@@ VAR paths_type
+
+ v.find<string> ("bin.libprefix");
}
// Register target types.