- removed dangerous assert
This commit is contained in:
parent
5dcc3d257f
commit
9ab06cc9ef
|
@ -49,7 +49,7 @@ template <class TT> class EmptyCore: public TT {
|
||||||
public:
|
public:
|
||||||
typedef int FlagType;
|
typedef int FlagType;
|
||||||
int &Flags() { assert(0); static int dummyflags(0); return dummyflags; }
|
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; }
|
static bool HasFlags() { return false; }
|
||||||
|
|
||||||
typedef vcg::Point3f CoordType;
|
typedef vcg::Point3f CoordType;
|
||||||
|
|
Loading…
Reference in New Issue