Browse Source

Fixed unintialized variable.

Accidentaly found when running unit tests on GLES build.
pull/7/head
Vladimír Vondruš 14 years ago
parent
commit
1c67fc3c66
  1. 7
      src/Physics/ShapedObjectGroup.h

7
src/Physics/ShapedObjectGroup.h

@ -40,6 +40,13 @@ template<std::uint8_t dimensions> class PHYSICS_EXPORT ShapedObjectGroup {
friend class ShapedObject<dimensions>;
public:
/**
* @brief Constructor
*
* Marks the group as dirty.
*/
inline constexpr ShapedObjectGroup(): dirty(true) {}
/**
* @brief Destructor
*

Loading…
Cancel
Save