From 8e258e150743f9d71a7bbd9f70af78a05d354456 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 6 Dec 2016 15:54:07 +0200 Subject: Work around wrong static initialization order in VC --- build2/parser.cxx | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'build2/parser.cxx') diff --git a/build2/parser.cxx b/build2/parser.cxx index 87ec8b1..c47cc8b 100644 --- a/build2/parser.cxx +++ b/build2/parser.cxx @@ -1520,18 +1520,20 @@ namespace build2 static const value_type* map_type (const string& n) { + auto ptr = [] (const value_type& vt) {return &vt;}; + return - n == "bool" ? &value_traits::value_type : - n == "uint64" ? &value_traits::value_type : - n == "string" ? &value_traits::value_type : - n == "path" ? &value_traits::value_type : - n == "dir_path" ? &value_traits::value_type : - n == "abs_dir_path" ? &value_traits::value_type : - n == "name" ? &value_traits::value_type : - n == "strings" ? &value_traits::value_type : - n == "paths" ? &value_traits::value_type : - n == "dir_paths" ? &value_traits::value_type : - n == "names" ? &value_traits>::value_type : + n == "bool" ? ptr (value_traits::value_type) : + n == "uint64" ? ptr (value_traits::value_type) : + n == "string" ? ptr (value_traits::value_type) : + n == "path" ? ptr (value_traits::value_type) : + n == "dir_path" ? ptr (value_traits::value_type) : + n == "abs_dir_path" ? ptr (value_traits::value_type) : + n == "name" ? ptr (value_traits::value_type) : + n == "strings" ? ptr (value_traits::value_type) : + n == "paths" ? ptr (value_traits::value_type) : + n == "dir_paths" ? ptr (value_traits::value_type) : + n == "names" ? ptr (value_traits>::value_type) : nullptr; } -- cgit v1.1