From 335354fdca82bb047efdf8daf21d5d40dc39d070 Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Fri, 7 Mar 2014 10:36:12 +0000 Subject: [PATCH] corrected one wrong assert on FFlinkConditions --- vcg/simplex/face/topology.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/simplex/face/topology.h b/vcg/simplex/face/topology.h index d32ca755..9e0449aa 100644 --- a/vcg/simplex/face/topology.h +++ b/vcg/simplex/face/topology.h @@ -462,7 +462,7 @@ bool FFLinkCondition(FaceType &f, const int z) if(face::IsBorder(f,z) && (cnt==1)) return true; if(!face::IsBorder(f,z) && (cnt==2)) return true; - assert(0); + //assert(0); return false; }