added a ; how could this ever compile?

This commit is contained in:
Paolo Cignoni 2006-04-18 07:01:22 +00:00
parent 2bf25202a4
commit 4ae1cb2a64
1 changed files with 5 additions and 1 deletions

View File

@ -24,6 +24,10 @@
History
$Log: not supported by cvs2svn $
Revision 1.36 2006/04/12 15:08:51 cignoni
Added ConnectedIterator (should be moved somewhere else)
Cleaned ConnectedComponents
Revision 1.35 2006/02/28 16:51:29 ponchio
Added typename
@ -630,7 +634,7 @@ private:
*/
static int ConnectedComponents(MeshType &m)
{
std::vector< std::pair<int,FacePointer> > &CCV
std::vector< std::pair<int,FacePointer> > &CCV;
return ConnectedComponents(m,CCV);
}
static int ConnectedComponents(MeshType &m, std::vector< std::pair<int,FacePointer> > &CCV)