COIN-OR::LEMON - Graph Library

Changeset 127:656ac25e009b in glemon-0.x


Ignore:
Timestamp:
01/31/06 22:14:11 (18 years ago)
Author:
Alpar Juttner
Branch:
gui
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk/gui@2511
Message:

Fix icc compilation failures.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • graph_displayer_canvas.h

    r118 r127  
    352352  NoteBookTab & mytab;
    353353
    354   XY GraphDisplayerCanvas::calcArrowPos(XY, XY, XY, XY, bool);
     354  XY calcArrowPos(XY, XY, XY, XY, bool);
    355355};
    356356
  • xml.h

    r124 r127  
    208208    XmlIo(std::ostream& _os) : _writeMode(true), os(_os),
    209209                               level(-1),
    210                                is(*(std::istream*)(NULL)) {}
     210                               is(std::cin) {}
    211211    ///\e
    212212    ///
    213213    XmlIo(std::istream& _is) : _writeMode(false),
    214                                os(*(std::ostream*)(NULL)), is(_is),
     214                               os(std::cout), is(_is),
    215215                               line_number(1) {}
    216216
Note: See TracChangeset for help on using the changeset viewer.