Remove redundant manipulators

revert-6246b479
elsid 2 years ago
parent f9e9368fda
commit e6e6b65ab3
No known key found for this signature in database
GPG Key ID: 4DE04C198CBA7625

@ -38,9 +38,8 @@ namespace testing
template <>
inline testing::Message& Message::operator<<(const osg::Vec3f& value)
{
return (*this) << "Vec3fEq(" << std::setprecision(std::numeric_limits<float>::max_exponent10) << value.x()
<< ", " << std::setprecision(std::numeric_limits<float>::max_exponent10) << value.y() << ", "
<< std::setprecision(std::numeric_limits<float>::max_exponent10) << value.z() << ')';
return (*this) << std::setprecision(std::numeric_limits<float>::max_exponent10) << "Vec3fEq(" << value.x()
<< ", " << value.y() << ", " << value.z() << ')';
}
template <>

Loading…
Cancel
Save