diff options
author | jackpoz <giacomopoz@gmail.com> | 2017-12-17 16:42:43 +0100 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2017-12-17 16:42:43 +0100 |
commit | 657683df7e1a861a158adc0c022d053e14146bf4 (patch) | |
tree | b4182840d2e3a1bf28168aa093acc4ee27d6584d /src/common/Collision/Models/GameObjectModel.h | |
parent | ae878e18ef121b7b1960f40f2b0f99debd2155d8 (diff) |
Core/Misc: Fix clang 6 warnings
Diffstat (limited to 'src/common/Collision/Models/GameObjectModel.h')
-rw-r--r-- | src/common/Collision/Models/GameObjectModel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/Collision/Models/GameObjectModel.h b/src/common/Collision/Models/GameObjectModel.h index 72fee944380..57603a5dc77 100644 --- a/src/common/Collision/Models/GameObjectModel.h +++ b/src/common/Collision/Models/GameObjectModel.h @@ -46,6 +46,7 @@ public: virtual float GetOrientation() const { return 0.0f; } virtual float GetScale() const { return 1.0f; } virtual void DebugVisualizeCorner(G3D::Vector3 const& /*corner*/) const { } + virtual ~GameObjectModelOwnerBase() { } }; class TC_COMMON_API GameObjectModel /*, public Intersectable*/ |