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/context.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'build2/context.cxx') diff --git a/build2/context.cxx b/build2/context.cxx index 49edc1c..dc84e63 100644 --- a/build2/context.cxx +++ b/build2/context.cxx @@ -63,19 +63,19 @@ namespace build2 { auto& v (var_pool); - v.find ("src_root", dir_path_type); - v.find ("out_root", dir_path_type); - v.find ("src_base", dir_path_type); - v.find ("out_base", dir_path_type); + v.find ("src_root"); + v.find ("out_root"); + v.find ("src_base"); + v.find ("out_base"); - v.find ("project", string_type); - v.find ("amalgamation", dir_path_type); + v.find ("project"); + v.find ("amalgamation"); - // Shouldn't be typed since the value requires pre-processing. + // Not typed since the value requires pre-processing. // v.find ("subprojects", nullptr, '='); - v.find ("extension", string_type); + v.find ("extension"); } // Create global scope. For Win32 this is not a "real" root path. -- cgit v1.1