From b9fbbb117b7b0f3d46b74381c2ac2b47e3a93c02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 8 Nov 2012 18:46:48 +0100 Subject: [PATCH] Don't use constexpr here. * The class has std::vector in it. * The class has virtual destructor. --- src/Physics/ShapedObjectGroup.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Physics/ShapedObjectGroup.h b/src/Physics/ShapedObjectGroup.h index acd5fb96a..1934ef19c 100644 --- a/src/Physics/ShapedObjectGroup.h +++ b/src/Physics/ShapedObjectGroup.h @@ -45,7 +45,7 @@ template class PHYSICS_EXPORT ShapedObjectGroup { * * Marks the group as dirty. */ - inline constexpr ShapedObjectGroup(): dirty(true) {} + inline ShapedObjectGroup(): dirty(true) {} /** * @brief Destructor