diff --git a/apps/openmw_test_suite/detournavigator/operators.hpp b/apps/openmw_test_suite/detournavigator/operators.hpp index 356e5eca04..4e42af78e4 100644 --- a/apps/openmw_test_suite/detournavigator/operators.hpp +++ b/apps/openmw_test_suite/detournavigator/operators.hpp @@ -38,9 +38,8 @@ namespace testing template <> inline testing::Message& Message::operator<<(const osg::Vec3f& value) { - return (*this) << "Vec3fEq(" << std::setprecision(std::numeric_limits::max_exponent10) << value.x() - << ", " << std::setprecision(std::numeric_limits::max_exponent10) << value.y() << ", " - << std::setprecision(std::numeric_limits::max_exponent10) << value.z() << ')'; + return (*this) << std::setprecision(std::numeric_limits::max_exponent10) << "Vec3fEq(" << value.x() + << ", " << value.y() << ", " << value.z() << ')'; } template <>