usual typename missing

This commit is contained in:
Federico Ponchio 2006-10-02 09:31:47 +00:00
parent 9f8cbf3f08
commit b5f612153c
1 changed files with 6 additions and 325 deletions

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.29 2006/09/29 15:11:41 giec
Fixed a few bug.
Revision 1.28 2006/09/29 14:40:22 cignoni
Removed a useless, wrong version of AddFaces
@ -239,331 +242,9 @@ namespace vcg {
PointerUpdater<FacePointer> pu;
FaceIterator f_ret= AddFaces(m,n,pu);
std::vector<FacePointer *>::iterator fi;
for(fi=local_vec.begin();fi!=local_vec.end();++fi)
pu.Update(**fi);
typename std::vector<FacePointer *>::iterator fi;
for(fi=local_vec.begin();fi!=local_vec.end();++fi)
pu.Update(**fi);
return f_ret;
}