# 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/test/lgf_test.cc
+++ b/test/lgf_test.cc
@@ -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;
       }
