show/hide this revision's text 2 added 21 characters in body
bool operator==(Vector3 const &lhs, Vector3 const &rhs) { ... }

The canonical definition of an equality operator defined on a class should only have one argument, namely the rhs. The lhs is this. Don't know if this would be a solution to your problem though.

This is what I would write :

class Vector3 { bool operator==( const Vector3 & rhs) const { ... } };

show/hide this revision's text 1
bool operator==(Vector3 const &lhs, Vector3 const &rhs) { ... }

The canonical definition of an equality operator defined on a class should only have one argument, namely the rhs. The lhs is this. Don't know if this would be a solution to your problem though.

This is what I would write :

bool operator==( const Vector3 & rhs) const { ... }