mirror of
https://github.com/OpenMW/openmw.git
synced 2025-12-13 23:13:05 +00:00
Remove redundant manipulators
This commit is contained in:
parent
f9e9368fda
commit
e6e6b65ab3
1 changed files with 2 additions and 3 deletions
|
|
@ -38,9 +38,8 @@ namespace testing
|
||||||
template <>
|
template <>
|
||||||
inline testing::Message& Message::operator<<(const osg::Vec3f& value)
|
inline testing::Message& Message::operator<<(const osg::Vec3f& value)
|
||||||
{
|
{
|
||||||
return (*this) << "Vec3fEq(" << std::setprecision(std::numeric_limits<float>::max_exponent10) << value.x()
|
return (*this) << std::setprecision(std::numeric_limits<float>::max_exponent10) << "Vec3fEq(" << value.x()
|
||||||
<< ", " << std::setprecision(std::numeric_limits<float>::max_exponent10) << value.y() << ", "
|
<< ", " << value.y() << ", " << value.z() << ')';
|
||||||
<< std::setprecision(std::numeric_limits<float>::max_exponent10) << value.z() << ')';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue