21 Jul
2008
21 Jul
'08
2:01 p.m.
Tony Turner wrote:
template< typename I > struct Start : public sc::state< Start<I>, Inst<I> > { Start<I>(my_context ctx ) : my_base( ctx ) {} };
try this: template< typename I > struct Start : public sc::state< Start<I>, Inst<I> > { Start<I>( typename sc::state< Start<I>, Inst<I> >::my_context ctx ) : my_base( ctx ) {} }; HTH Juraj