From c76ff457079bf5901a6bb55377c14aeee856a354 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 16 Mar 2016 16:02:06 +0200 Subject: Cleanup variable typing --- build2/cxx/module.cxx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'build2/cxx/module.cxx') 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 ("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 ("config.cxx.poptions"); + v.find ("config.cxx.coptions"); + v.find ("config.cxx.loptions"); + v.find ("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 ("cxx.poptions"); + v.find ("cxx.coptions"); + v.find ("cxx.loptions"); + v.find ("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 ("cxx.export.poptions"); + v.find ("cxx.export.coptions"); + v.find ("cxx.export.loptions"); + v.find ("cxx.export.libs"); - v.find ("cxx.std", string_type); + v.find ("cxx.std"); } // Register target types. -- cgit v1.1