From f85ce4e3347d5aa7a8843733f83706f35ba0c649 Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 26 Jul 2013 07:35:02 +0000 Subject: [PATCH] Removed all references to the useless old vcg::math::Swap --- vcg/complex/algorithms/update/topology.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/complex/algorithms/update/topology.h b/vcg/complex/algorithms/update/topology.h index 398fa00d..cf150879 100644 --- a/vcg/complex/algorithms/update/topology.h +++ b/vcg/complex/algorithms/update/topology.h @@ -80,7 +80,7 @@ public: v[1] = pf->V(pf->Next(nz)); assert(v[0] != v[1]); // The face pointed by 'f' is Degenerate (two coincident vertexes) - if( v[0] > v[1] ) math::Swap(v[0],v[1]); + if( v[0] > v[1] ) std::swap(v[0],v[1]); f = pf; z = nz; }