# HG changeset patch
# User Peter Kovacs <kpeter@inf.elte.hu>
# Date 1319402944 -7200
# Node ID b96574ff36ecfc6e25fb89c46e314c4be0f500eb
# Parent  08cbd48f51f03d5b4158fd3cb4b48169f189160d
Fix VS warnings (#429)

diff -r 08cbd48f51f0 -r b96574ff36ec test/lgf_test.cc
--- a/test/lgf_test.cc	Wed Oct 05 12:02:56 2011 +0200
+++ b/test/lgf_test.cc	Sun Oct 23 22:49:04 2011 +0200
@@ -117,7 +117,7 @@
       digraphReader(d, input).
         run();
     }
-    catch (FormatError& error) 
+    catch (FormatError&) 
       {
         ok = true;
       }
@@ -131,7 +131,7 @@
       graphReader(g, input).
         run();
     }
-    catch (FormatError& error)
+    catch (FormatError&)
       {
         ok = true;
       }
@@ -146,7 +146,7 @@
       digraphReader(d, input).
         run();
     }
-    catch (FormatError& error)
+    catch (FormatError&)
       {
         ok = true;
       }
@@ -160,7 +160,7 @@
       graphReader(g, input).
         run();
     }
-    catch (FormatError& error)
+    catch (FormatError&)
       {
         ok = true;
       }