Fixed compile errors on Linux

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1168 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
laurentgom 2009-07-12 08:07:30 +00:00
parent 1bf35973be
commit 1ce18ed1b9
7 changed files with 14 additions and 14 deletions

View file

@ -169,7 +169,7 @@ Vector3<T>& operator /=(Vector3<T>& left, T right)
/// Operator == overload ; compares the equality of two vectors
////////////////////////////////////////////////////////////
template <typename T>
bool operator ==(const Vector3<T>& left, const Vector3<T>& V2)
bool operator ==(const Vector3<T>& left, const Vector3<T>& right)
{
return (left.x == right.x) && (left.y == right.y) && (left.z == right.z);
}