Fixed an ambiguity.

[SVN r34403]
This commit is contained in:
Hartmut Kaiser 2006-06-26 01:58:38 +00:00
parent ce6e9c6698
commit bf968794c9

View File

@ -40,7 +40,7 @@ template<class T>
struct select_base struct select_base
{ {
typedef typename typedef typename
detail::if_true< ::boost::is_const<T>::value > ::boost::detail::if_true< ::boost::is_const<T>::value >
::template then< const_T_base<T>, non_const_T_base<T> >::type type ; ::template then< const_T_base<T>, non_const_T_base<T> >::type type ;
} ; } ;