Fix VS warnings (#429)
authorPeter Kovacs <kpeter@inf.elte.hu>
Sun, 23 Oct 2011 22:49:04 +0200
changeset 930b96574ff36ec
parent 929 08cbd48f51f0
child 931 c1a959df3b2c
child 937 17e36e175725
Fix VS warnings (#429)
test/lgf_test.cc
     1.1 --- a/test/lgf_test.cc	Wed Oct 05 12:02:56 2011 +0200
     1.2 +++ b/test/lgf_test.cc	Sun Oct 23 22:49:04 2011 +0200
     1.3 @@ -117,7 +117,7 @@
     1.4        digraphReader(d, input).
     1.5          run();
     1.6      }
     1.7 -    catch (FormatError& error) 
     1.8 +    catch (FormatError&) 
     1.9        {
    1.10          ok = true;
    1.11        }
    1.12 @@ -131,7 +131,7 @@
    1.13        graphReader(g, input).
    1.14          run();
    1.15      }
    1.16 -    catch (FormatError& error)
    1.17 +    catch (FormatError&)
    1.18        {
    1.19          ok = true;
    1.20        }
    1.21 @@ -146,7 +146,7 @@
    1.22        digraphReader(d, input).
    1.23          run();
    1.24      }
    1.25 -    catch (FormatError& error)
    1.26 +    catch (FormatError&)
    1.27        {
    1.28          ok = true;
    1.29        }
    1.30 @@ -160,7 +160,7 @@
    1.31        graphReader(g, input).
    1.32          run();
    1.33      }
    1.34 -    catch (FormatError& error)
    1.35 +    catch (FormatError&)
    1.36        {
    1.37          ok = true;
    1.38        }