Removed dumb cerr output

This commit is contained in:
Leonetienne 2022-02-11 13:44:53 +01:00
parent 59f1164458
commit da82dbee07
3 changed files with 1 additions and 4 deletions

View File

@ -294,7 +294,6 @@ void Vector2<double>::NormalizeSelf()
template<>
void Vector2<int>::NormalizeSelf()
{
std::cerr << "Stop normalizing int-vectors!!" << std::endl;
x = 0;
y = 0;

View File

@ -222,7 +222,6 @@ namespace Eule {
template<>
void Vector3<int>::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<typename T>

View File

@ -257,7 +257,6 @@ void Vector4<double>::NormalizeSelf()
template<>
void Vector4<int>::NormalizeSelf()
{
std::cerr << "Stop normalizing int-vectors!!" << std::endl;
x = 0;
y = 0;
z = 0;