
27 Jul
2008
27 Jul
'08
4:28 p.m.
2008/7/27 noman javed <noman_bwp@yahoo.com>:
struct Poplist { template<class seq> struct apply { typedef pop_front<seq>::type res; static const int value = size<seq>::value; }; };
for starts, you need to use typename here: typedef typename pop_front<seq>::type res; Stjepan