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
pull/5/head
aramis_acg 2012-04-22 22:33:43 +00:00
parent 5a81b42ebe
commit 68d2b71893
1 changed files with 4 additions and 0 deletions

View File

@ -238,6 +238,10 @@ public:
public:
virtual ~Curve() {}
// check if a curve is closed
virtual bool IsClosed() const = 0;