Hello.
Latest version of VA.
class CTest
{
public:
friend CTest operator*( const CTest& crLeft, const CTest& crRight )
{
return crLeft * crRight;
}
};
Use "move implementation..."
cpp:
friend CTest std::operator*( const CTest& crLeft, const CTest& crRight )
{
return crLeft * crRight;
}
"friend" and "std"?
EDIT:
When CTest is in namespace in cpp it appears outside namespace