COIN-OR::LEMON - Graph Library

Changeset 1176:36fa2fee7144 in lemon


Ignore:
Timestamp:
11/28/12 12:05:27 (11 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
1170:764826c6e2b4 (diff), 1174:a26b90a17c81 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merge bugfix #453

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/graph_components.h

    r1161 r1175  
    109109
    110110          bool b;
     111          ignore_unused_variable_warning(b);
     112
    111113          b = (ia == ib) && (ia != ib);
    112114          b = (ia == INVALID) && (ib != INVALID);
  • test/dfs_test.cc

    r1111 r1176  
    6868  int l, i;
    6969  bool b;
     70  ignore_unused_variable_warning(l,i,b);
     71
    7072  DType::DistMap d(G);
    7173  DType::PredMap p(G);
     
    152154  Digraph g;
    153155  bool b;
     156  ignore_unused_variable_warning(b);
     157
    154158  dfs(g).run(Node());
    155159  b=dfs(g).run(Node(),Node());
Note: See TracChangeset for help on using the changeset viewer.