From 1f231b5a3fcf02504f95fc9b7954ac9d70c61fa2 Mon Sep 17 00:00:00 2001 From: cnr-isti-vclab Date: Wed, 16 May 2007 15:12:40 +0000 Subject: [PATCH] Added std:: prefix to swap call --- vcg/simplex/face/topology.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/simplex/face/topology.h b/vcg/simplex/face/topology.h index 6621a90a..760d8a6d 100644 --- a/vcg/simplex/face/topology.h +++ b/vcg/simplex/face/topology.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.29 2006/12/06 00:08:21 cignoni +Removed Oldstyle uberZ access to FF adjacency + Revision 1.28 2006/11/09 17:28:42 cignoni Corrected Detach; added FFCorrectness; Corrected ComplexSize, Dissemination of a lot of assert() @@ -362,7 +365,7 @@ template void SwapEdge(FaceType &f, const int z) { // swap V0(z) with V1(z) - swap(f.V0(z), f.V1(z)); + std::swap(f.V0(z), f.V1(z)); if(f.HasFFAdjacency() && UpdateTopology) {