From 4c1110858aa2ec520689961427dbefe9a5aee1ee Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 2 Nov 2005 10:45:56 +0000 Subject: [PATCH] From Colin McDonald, "Fix for missing class name qualifier on the orthoNormal function." --- include/osg/Matrixd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/Matrixd b/include/osg/Matrixd index 2f2519366..5ca325c05 100644 --- a/include/osg/Matrixd +++ b/include/osg/Matrixd @@ -466,7 +466,7 @@ inline Matrixd Matrixd::inverse( const Matrixd& matrix) return m; } -inline Matrixd orthoNormal(const Matrixd& matrix) +inline Matrixd Matrixd::orthoNormal(const Matrixd& matrix) { Matrixd m; m.orthoNormalize(matrix);