From a0781cba6c5e57dc4c5d7dc312cd313bb811ebf4 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 20 Apr 2010 09:48:45 +0000 Subject: [PATCH] From Mourad Boufarguine, "This submission fixes osgDAE::toString(*) unresolved external symbols compile errors (on VS)." --- src/osgPlugins/dae/daeWriter.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/osgPlugins/dae/daeWriter.h b/src/osgPlugins/dae/daeWriter.h index d08881c98..4a3d707de 100644 --- a/src/osgPlugins/dae/daeWriter.h +++ b/src/osgPlugins/dae/daeWriter.h @@ -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