aboutsummaryrefslogtreecommitdiff
path: root/build2/test/module.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/test/module.cxx
parent20677fb264e743b8e5423af31a7d8dc06cf509f6 (diff)
Cleanup variable typing
Diffstat (limited to 'build2/test/module.cxx')
-rw-r--r--build2/test/module.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/build2/test/module.cxx b/build2/test/module.cxx
index c8c0fa7..10948ab 100644
--- a/build2/test/module.cxx
+++ b/build2/test/module.cxx
@@ -38,12 +38,12 @@ namespace build2
{
auto& v (var_pool);
- v.find ("test", bool_type);
- v.find ("test.input", name_type);
- v.find ("test.output", name_type);
- v.find ("test.roundtrip", name_type);
- v.find ("test.options", strings_type);
- v.find ("test.arguments", strings_type);
+ v.find<bool> ("test");
+ v.find<name> ("test.input");
+ v.find<name> ("test.output");
+ v.find<name> ("test.roundtrip");
+ v.find<strings> ("test.options");
+ v.find<strings> ("test.arguments");
}
}