COIN-OR::LEMON - Graph Library

Changeset 800:756022ac1674 in lemon-1.1


Ignore:
Timestamp:
07/30/13 15:03:53 (11 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Children:
801:deaf433636ca, 802:0e30f63d45d0, 804:6039b32a2351
Phase:
public
Message:

Suppress 'unused local typedefs' warnings, and resolve others (#470)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/core.h

    r789 r800  
    3636#ifdef _MSC_VER
    3737#pragma warning( disable : 4250 4355 4503 4800 4996 )
     38#endif
     39
     40#ifdef __GNUC__
     41// Needed by the [DI]GRAPH_TYPEDEFS marcos for gcc 4.8
     42#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
    3843#endif
    3944
  • test/lp_test.cc

    r785 r800  
    241241  {
    242242    LP::DualExpr e,f,g;
    243     LP::Row p1 = INVALID, p2 = INVALID, p3 = INVALID,
    244       p4 = INVALID, p5 = INVALID;
     243    LP::Row p1 = INVALID, p2 = INVALID;
    245244
    246245    e[p1]=2;
Note: See TracChangeset for help on using the changeset viewer.