[Lemon-commits] [lemon_svn] alpar: r2155 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:50:35 CET 2006
Author: alpar
Date: Thu Aug 18 14:22:44 2005
New Revision: 2155
Modified:
hugo/trunk/lemon/graph_to_eps.h
Log:
icc need this...
... and she's right.
Modified: hugo/trunk/lemon/graph_to_eps.h
==============================================================================
--- hugo/trunk/lemon/graph_to_eps.h (original)
+++ hugo/trunk/lemon/graph_to_eps.h Thu Aug 18 14:22:44 2005
@@ -877,7 +877,7 @@
for(EdgeIt e(g);e!=INVALID;++e)
if((!_undir||g.source(e)<g.target(e))&&_edgeWidths[e]>0)
el.push_back(e);
- sort(el.begin(),el.end(),edgeLess(g));
+ std::sort(el.begin(),el.end(),edgeLess(g));
typename std::vector<Edge>::iterator j;
for(typename std::vector<Edge>::iterator i=el.begin();i!=el.end();i=j) {
More information about the Lemon-commits
mailing list