26 Jun
2007
26 Jun
'07
12:07 a.m.
Manuel Jung wrote:
typedef boost::mpl::find
::type iter_T; //Doesn't compile
The 'typename' keyword is missing in this case. Try
typedef typename boost::mpl::find
typedef boost::mpl::find
::type iter_T_static; //Compiles
Non-templatized context here, so works without. Regards, Tobias