
26 Apr
2005
26 Apr
'05
11:38 a.m.
Vladimir Prus wrote:
Can you modify that line, replacing:
template<class T> struct add_value { typedef value<T> type; };
template<class T> struct add_value< value<T> > { typedef value<T> type; };
with
template<class T> struct add_value { typedef boost::_bi::value<T> type; };
template<class T> struct add_value< value<T> > { typedef boost::_bi::value<T> type; };
?
template<class T> struct add_value { typedef _bi::value<T> type; }; should be enough, if my theory is right.