
16 Oct
2004
16 Oct
'04
9:19 p.m.
Tobias Schwinger wrote:
That this won't work:
typedef typename boost::add_const<typename T::head_type> type;
This is not legal. It should be either: typedef typename boost::add_const<typename T::head_type>::type type; or typedef boost::add_const<typename T::head_type> type; depending on what you are trying to do. -- Eric Niebler Boost Consulting www.boost-consulting.com