From 530bb1fc1f4c344b494600b9fdebaaf881f25a75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 5 Dec 2013 02:02:45 +0100 Subject: [PATCH] MSVC 2013 compatibility: that thing doesn't like typename here. Although all other compilers _do want_ the typename there. --- src/SceneGraph/Object.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/SceneGraph/Object.h b/src/SceneGraph/Object.h index b8e6d7db8..f83d06aee 100644 --- a/src/SceneGraph/Object.h +++ b/src/SceneGraph/Object.h @@ -256,7 +256,11 @@ template class Object: public AbstractObject transformations(std::vector*> objects, const typename Transformation::DataType& initialTransformation = typename Transformation::DataType()) const; + #else + std::vector transformations(std::vector*> objects, const typename Transformation::DataType& initialTransformation = Transformation::DataType()) const; + #endif /*@}*/