- removed dangerous assert

This commit is contained in:
granzuglia 2015-07-30 12:32:22 +00:00
parent 5dcc3d257f
commit 9ab06cc9ef
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ template <class TT> class EmptyCore: public TT {
public:
typedef int FlagType;
int &Flags() { assert(0); static int dummyflags(0); return dummyflags; }
int cFlags() const { assert(0); return 0; }
int cFlags() const { return 0; }
static bool HasFlags() { return false; }
typedef vcg::Point3f CoordType;