Browse Source

Don't use constexpr here.

* The class has std::vector in it.
 * The class has virtual destructor.
pull/7/head
Vladimír Vondruš 14 years ago
parent
commit
b9fbbb117b
  1. 2
      src/Physics/ShapedObjectGroup.h

2
src/Physics/ShapedObjectGroup.h

@ -45,7 +45,7 @@ template<std::uint8_t dimensions> class PHYSICS_EXPORT ShapedObjectGroup {
*
* Marks the group as dirty.
*/
inline constexpr ShapedObjectGroup(): dirty(true) {}
inline ShapedObjectGroup(): dirty(true) {}
/**
* @brief Destructor

Loading…
Cancel
Save