aboutsummaryrefslogtreecommitdiff
path: root/build2/cli
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/cli
parent20677fb264e743b8e5423af31a7d8dc06cf509f6 (diff)
Cleanup variable typing
Diffstat (limited to 'build2/cli')
-rw-r--r--build2/cli/module.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/build2/cli/module.cxx b/build2/cli/module.cxx
index 8ec2db9..6497766 100644
--- a/build2/cli/module.cxx
+++ b/build2/cli/module.cxx
@@ -55,12 +55,12 @@ namespace build2
{
auto& v (var_pool);
- v.find ("config.cli.configured", bool_type);
+ v.find<bool> ("config.cli.configured");
- v.find ("config.cli", string_type); //@@ VAR type
+ v.find<string> ("config.cli"); //@@ VAR type
- v.find ("config.cli.options", strings_type);
- v.find ("cli.options", strings_type);
+ v.find<strings> ("config.cli.options");
+ v.find<strings> ("cli.options");
}
// Register target types.