diff --git a/Eule/Vector2.h b/Eule/Vector2.h index f46b46a..825cecb 100644 --- a/Eule/Vector2.h +++ b/Eule/Vector2.h @@ -294,7 +294,6 @@ void Vector2::NormalizeSelf() template<> void Vector2::NormalizeSelf() { - std::cerr << "Stop normalizing int-vectors!!" << std::endl; x = 0; y = 0; diff --git a/Eule/Vector3.cpp b/Eule/Vector3.cpp index 692e006..9f09945 100644 --- a/Eule/Vector3.cpp +++ b/Eule/Vector3.cpp @@ -222,7 +222,6 @@ namespace Eule { template<> void Vector3::NormalizeSelf() { - std::cerr << "Stop normalizing int-vectors!!" << std::endl; x = 0; y = 0; z = 0; @@ -239,7 +238,7 @@ namespace Eule { (::Eule::Math::Similar(x, other.x, epsilon)) && (::Eule::Math::Similar(y, other.y, epsilon)) && (::Eule::Math::Similar(z, other.z, epsilon)) - ; + ; } template diff --git a/Eule/Vector4.h b/Eule/Vector4.h index 5472cf5..c410b14 100644 --- a/Eule/Vector4.h +++ b/Eule/Vector4.h @@ -257,7 +257,6 @@ void Vector4::NormalizeSelf() template<> void Vector4::NormalizeSelf() { - std::cerr << "Stop normalizing int-vectors!!" << std::endl; x = 0; y = 0; z = 0;