From Mourad Boufarguine, "This submission fixes osgDAE::toString(*) unresolved external symbols compile errors (on VS)."

This commit is contained in:
Robert Osfield
2010-04-20 09:48:45 +00:00
parent b1658ee6df
commit a0781cba6c

View File

@@ -77,9 +77,9 @@ std::string toString(T value) {
return str.str();
}
std::string toString(osg::Vec3f value);
std::string toString(osg::Vec3d value);
std::string toString(osg::Matrix value);
std::string toString(const osg::Vec3f& value);
std::string toString(const osg::Vec3d& value);
std::string toString(const osg::Matrix& value);
// Collects all nodes that are targeted by an animation
class FindAnimatedNodeVisitor : public osg::NodeVisitor