minor change

This commit is contained in:
ganovelli 2004-10-18 17:15:45 +00:00
parent eba78a7a10
commit 33f19dc6df
1 changed files with 4 additions and 1 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.13 2004/08/06 01:47:57 pietroni
corrected errors on vfappend
Revision 1.12 2004/08/05 22:27:00 pietroni Revision 1.12 2004/08/05 22:27:00 pietroni
added VFAppend funtion added VFAppend funtion
@ -80,7 +83,7 @@ template <class FaceType>
inline bool IsBorder(FaceType const & f, const int j ) inline bool IsBorder(FaceType const & f, const int j )
{ {
if(FaceType::HasFFAdjacency()) if(FaceType::HasFFAdjacency())
return f.FFp(j) == &f ; return f.IsBorder(j);
else else
return true; return true;
} }