diff --git a/include/Nazara/Math/Vector3.inl b/include/Nazara/Math/Vector3.inl index be6a5d77f..2e00e0d1a 100644 --- a/include/Nazara/Math/Vector3.inl +++ b/include/Nazara/Math/Vector3.inl @@ -7,7 +7,6 @@ #include #include #include -#include #include #include @@ -576,10 +575,7 @@ namespace Nz template std::string Vector3::ToString() const { - std::ostringstream ss; - ss << *this; - - return ss.str(); + return "Vector3(" + std::to_string(x) + ", " + std::to_string(y) + ", " + std::to_string(z) + ')'; } /*!