From 9ab06cc9ef4bf1d739311ec03ffe188436a77bb0 Mon Sep 17 00:00:00 2001 From: granzuglia Date: Thu, 30 Jul 2015 12:32:22 +0000 Subject: [PATCH] - removed dangerous assert --- vcg/simplex/vertex/component.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/simplex/vertex/component.h b/vcg/simplex/vertex/component.h index f7cfa9dd..e123646e 100644 --- a/vcg/simplex/vertex/component.h +++ b/vcg/simplex/vertex/component.h @@ -49,7 +49,7 @@ template 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;