COIN-OR::LEMON - Graph Library

Ticket #429: 429-4465585f2fd1.patch

File 429-4465585f2fd1.patch, 982 bytes (added by Peter Kovacs, 13 years ago)
  • test/lgf_test.cc

    # HG changeset patch
    # User Peter Kovacs <kpeter@inf.elte.hu>
    # Date 1319402944 -7200
    # Node ID 4465585f2fd1487137e02aab556c11d02cadf230
    # Parent  6bca1306a64c5b63b7035f89ea3d7ec71f5fd675
    Fix VS warnings
    
    diff --git a/test/lgf_test.cc b/test/lgf_test.cc
    a b  
    117117      digraphReader(d, input).
    118118        run();
    119119    }
    120     catch (FormatError& error)
     120    catch (FormatError&)
    121121      {
    122122        ok = true;
    123123      }
     
    131131      graphReader(g, input).
    132132        run();
    133133    }
    134     catch (FormatError& error)
     134    catch (FormatError&)
    135135      {
    136136        ok = true;
    137137      }
     
    146146      digraphReader(d, input).
    147147        run();
    148148    }
    149     catch (FormatError& error)
     149    catch (FormatError&)
    150150      {
    151151        ok = true;
    152152      }
     
    160160      graphReader(g, input).
    161161        run();
    162162    }
    163     catch (FormatError& error)
     163    catch (FormatError&)
    164164      {
    165165        ok = true;
    166166      }