From bf968794c95e7c8f081b909a105e90abedf57453 Mon Sep 17 00:00:00 2001 From: Hartmut Kaiser Date: Mon, 26 Jun 2006 01:58:38 +0000 Subject: [PATCH] Fixed an ambiguity. [SVN r34403] --- include/boost/utility/value_init.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/utility/value_init.hpp b/include/boost/utility/value_init.hpp index d991486..5591b9b 100644 --- a/include/boost/utility/value_init.hpp +++ b/include/boost/utility/value_init.hpp @@ -40,7 +40,7 @@ template struct select_base { typedef typename - detail::if_true< ::boost::is_const::value > + ::boost::detail::if_true< ::boost::is_const::value > ::template then< const_T_base, non_const_T_base >::type type ; } ;