From 68d2b718939a2c893eaf75951eacecb4e7ffc6cf Mon Sep 17 00:00:00 2001 From: aramis_acg Date: Sun, 22 Apr 2012 22:33:43 +0000 Subject: [PATCH] Patch [3520194] Fix compiler warning for non-virtual destructor by Andy Maloney. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1235 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- code/IFCUtil.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/IFCUtil.h b/code/IFCUtil.h index 8afc19881..669befea4 100644 --- a/code/IFCUtil.h +++ b/code/IFCUtil.h @@ -238,6 +238,10 @@ public: public: + + virtual ~Curve() {} + + // check if a curve is closed virtual bool IsClosed() const = 0;