From a7c1893b8d646116f19ce3c9fcbf2c4a294cfe9d Mon Sep 17 00:00:00 2001 From: alemuntoni Date: Tue, 2 Mar 2021 15:16:02 +0100 Subject: [PATCH] fix export collada also with double precision scalars --- wrap/dae/colladaformat.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wrap/dae/colladaformat.h b/wrap/dae/colladaformat.h index 29b6dfe7..3b6c6f8e 100644 --- a/wrap/dae/colladaformat.h +++ b/wrap/dae/colladaformat.h @@ -38,9 +38,9 @@ template struct CoordNumber{public: static unsigned int coord() { return 0; }}; -template<> struct CoordNumber { public: static unsigned int coord() { return 2; } }; -template<> struct CoordNumber { public: static unsigned int coord() { return 3; } }; -template<> struct CoordNumber { public: static unsigned int coord() { return 4; } }; +template struct CoordNumber> { public: static unsigned int coord() { return 2; } }; +template struct CoordNumber> { public: static unsigned int coord() { return 3; } }; +template struct CoordNumber> { public: static unsigned int coord() { return 4; } }; template<> struct CoordNumber { public: static unsigned int coord() { return 4; } };