1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 03:39:14 +00:00

Remove another duplicate operator<<

This commit is contained in:
AnyOldName3 2018-10-31 16:26:53 +00:00
parent 4489f23005
commit 93843d024c

View File

@ -115,17 +115,6 @@ static std::ostream& operator <<(std::ostream& stream, const btCollisionShape* v
return value ? stream << "&" << *value : stream << "nullptr"; return value ? stream << "&" << *value : stream << "nullptr";
} }
namespace osg
{
static std::ostream& operator <<(std::ostream& stream, const Vec3f& value)
{
return stream << "osg::Vec3f {"
<< value.x() << ", "
<< value.y() << ", "
<< value.z() << "}";
}
}
namespace std namespace std
{ {
static std::ostream& operator <<(std::ostream& stream, const map<int, int>& value) static std::ostream& operator <<(std::ostream& stream, const map<int, int>& value)
@ -153,7 +142,7 @@ namespace Resource
return stream << "Resource::BulletShape {" return stream << "Resource::BulletShape {"
<< value.mCollisionShape << ", " << value.mCollisionShape << ", "
<< value.mAvoidCollisionShape << ", " << value.mAvoidCollisionShape << ", "
<< value.mCollisionBoxHalfExtents << ", " << "osg::Vec3f {" << value.mCollisionBoxHalfExtents << "}" << ", "
<< value.mAnimatedShapes << value.mAnimatedShapes
<< "}"; << "}";
} }