aboutsummaryrefslogtreecommitdiff
path: root/build2/cxx
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/cxx
parent20677fb264e743b8e5423af31a7d8dc06cf509f6 (diff)
Cleanup variable typing
Diffstat (limited to 'build2/cxx')
-rw-r--r--build2/cxx/module.cxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/build2/cxx/module.cxx b/build2/cxx/module.cxx
index 9baccae..7c6a4dd 100644
--- a/build2/cxx/module.cxx
+++ b/build2/cxx/module.cxx
@@ -62,24 +62,24 @@ namespace build2
{
auto& v (var_pool);
- v.find ("config.cxx", string_type); //@@ VAR type
+ v.find<string> ("config.cxx"); //@@ VAR type
- v.find ("config.cxx.poptions", strings_type);
- v.find ("config.cxx.coptions", strings_type);
- v.find ("config.cxx.loptions", strings_type);
- v.find ("config.cxx.libs", strings_type);
+ v.find<strings> ("config.cxx.poptions");
+ v.find<strings> ("config.cxx.coptions");
+ v.find<strings> ("config.cxx.loptions");
+ v.find<strings> ("config.cxx.libs");
- v.find ("cxx.poptions", strings_type);
- v.find ("cxx.coptions", strings_type);
- v.find ("cxx.loptions", strings_type);
- v.find ("cxx.libs", strings_type);
+ v.find<strings> ("cxx.poptions");
+ v.find<strings> ("cxx.coptions");
+ v.find<strings> ("cxx.loptions");
+ v.find<strings> ("cxx.libs");
- v.find ("cxx.export.poptions", strings_type);
- v.find ("cxx.export.coptions", strings_type);
- v.find ("cxx.export.loptions", strings_type);
- v.find ("cxx.export.libs", strings_type);
+ v.find<strings> ("cxx.export.poptions");
+ v.find<strings> ("cxx.export.coptions");
+ v.find<strings> ("cxx.export.loptions");
+ v.find<strings> ("cxx.export.libs");
- v.find ("cxx.std", string_type);
+ v.find<string> ("cxx.std");
}
// Register target types.