
6 Dec
2012
6 Dec
'12
7:06 p.m.
On Wed, Dec 5, 2012 at 9:34 PM, Chris Stankevitz <chrisstankevitz@gmail.com> wrote:
template <typename TAFunc1, typename TAFunc2> void Chain(const TAFunc1& Func1, TAFunc2& Func2) { Func1(); Func2(); }
Another problem with this: The second argument should be a const reference, not a mutable reference. Chris