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 { ... } };
