j
k
j a
j l
Oliver Kowalke wrote:
template< typename Fn > struct D : public B { Fn fn; D( Fn fn_) : fn( fn_) {} void run() { fn(...) } // argument construction omitted };
template< typename Fn > struct D : public B { Fn fn;
D( Fn fn_) : fn( fn_) {}
void run() { fn(...) } // argument construction omitted };
You've omitted the only interesting part.
Back to the thread
Back to the list