Browse Source

Another mingw32 linker error fix.

This class is templated and thus doesn't export anything.
pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
0140aab5b1
  1. 2
      src/Shapes/Shape.h

2
src/Shapes/Shape.h

@ -65,7 +65,7 @@ Shapes::AbstractShape3D* firstCollision = shapes.firstCollision(shape);
@see @ref scenegraph, ShapeGroup2D, ShapeGroup3D,
DebugTools::ShapeRenderer
*/
template<class T> class MAGNUM_SHAPES_EXPORT Shape: public AbstractShape<T::Dimensions> {
template<class T> class Shape: public AbstractShape<T::Dimensions> {
friend struct Implementation::ShapeHelper<T>;
public:

Loading…
Cancel
Save