COIN-OR::LEMON - Graph Library

Changeset 184:716b220697a0 in lemon-1.2 for lemon/graph_to_eps.h


Ignore:
Timestamp:
03/27/08 16:27:23 (16 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Fix gcc-4.3 compilation errors and warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/graph_to_eps.h

    r157 r184  
    10161016      else for(ArcIt e(g);e!=INVALID;++e)
    10171017        if((!_undirected||g.source(e)<g.target(e))&&_arcWidths[e]>0
    1018            &&g.source(e)!=g.target(e))
     1018           &&g.source(e)!=g.target(e)) {
    10191019          if(_drawArrows) {
    10201020            dim2::Point<double> d(mycoords[g.target(e)]-mycoords[g.source(e)]);
     
    10361036               << _arcColors[e].green() << ' '
    10371037               << _arcColors[e].blue() << " arr\n";
    1038           }
     1038          } 
    10391039          else os << mycoords[g.source(e)].x << ' '
    10401040                  << mycoords[g.source(e)].y << ' '
     
    10451045                  << _arcColors[e].blue() << ' '
    10461046                  << _arcWidths[e]*_arcWidthScale << " l\n";
     1047        }
    10471048      os << "grestore\n";
    10481049    }
Note: See TracChangeset for help on using the changeset viewer.