I\'m having some trouble with a particular piece of code, if anyone can enlighten me on this matter it would be greatly appreciated, I\'ve isolated the problem down in the f
is calling a non const function, even though test2 is a const reference. That's the problem. You can fix this by making testing::test a const function.