diff --git a/src/SceneGraph/Object.h b/src/SceneGraph/Object.h index 3d5ab250e..b4b59b354 100644 --- a/src/SceneGraph/Object.h +++ b/src/SceneGraph/Object.h @@ -95,6 +95,7 @@ class documentation or @ref compilation-speedup-hpp for more information. @see @ref Scene, @ref AbstractFeature, @ref AbstractTransformation, @ref DebugTools::ObjectRenderer +@todo Test (and fix) that hpp works also on Windows */ template class MAGNUM_SCENEGRAPH_EXPORT Object: public AbstractObject, public Transformation #ifndef DOXYGEN_GENERATING_OUTPUT diff --git a/src/SceneGraph/Test/TranslationTransformationTest.cpp b/src/SceneGraph/Test/TranslationTransformationTest.cpp index ffff1aa74..801fd4b1e 100644 --- a/src/SceneGraph/Test/TranslationTransformationTest.cpp +++ b/src/SceneGraph/Test/TranslationTransformationTest.cpp @@ -28,9 +28,6 @@ #include "SceneGraph/TranslationTransformation.h" #include "SceneGraph/Scene.h" -/* For Object2Di */ -#include "SceneGraph/Object.hpp" - namespace Magnum { namespace SceneGraph { namespace Test { typedef Object Object2D; @@ -134,7 +131,7 @@ void TranslationTransformationTest::translate() { } void TranslationTransformationTest::integral() { - typedef Object> Object2Di; + typedef Object> Object2Di; Object2Di o; o.translate({3, -7});