corrected one wrong assert on FFlinkConditions
This commit is contained in:
parent
9e2643a90d
commit
335354fdca
|
@ -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==1)) return true;
|
||||||
if(!face::IsBorder(f,z) && (cnt==2)) return true;
|
if(!face::IsBorder(f,z) && (cnt==2)) return true;
|
||||||
assert(0);
|
//assert(0);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue