aboutsummaryrefslogtreecommitdiff
path: root/build2/test/module.cxx
diff options
context:
space:
mode:
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");
}
}