From 0140aab5b1254d15184e23e2c9c6d926d732bf0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 23 Jul 2013 12:30:20 +0200 Subject: [PATCH] Another mingw32 linker error fix. This class is templated and thus doesn't export anything. --- src/Shapes/Shape.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Shapes/Shape.h b/src/Shapes/Shape.h index 7d1774f91..05cd10172 100644 --- a/src/Shapes/Shape.h +++ b/src/Shapes/Shape.h @@ -65,7 +65,7 @@ Shapes::AbstractShape3D* firstCollision = shapes.firstCollision(shape); @see @ref scenegraph, ShapeGroup2D, ShapeGroup3D, DebugTools::ShapeRenderer */ -template class MAGNUM_SHAPES_EXPORT Shape: public AbstractShape { +template class Shape: public AbstractShape { friend struct Implementation::ShapeHelper; public: