[Lemon-commits] [lemon_svn] deba: r2917 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 21:51:14 CET 2006


Author: deba
Date: Mon Sep  4 14:15:20 2006
New Revision: 2917

Modified:
   hugo/trunk/lemon/edge_set.h

Log:
Bug fix
rethrow of exception missing 



Modified: hugo/trunk/lemon/edge_set.h
==============================================================================
--- hugo/trunk/lemon/edge_set.h	(original)
+++ hugo/trunk/lemon/edge_set.h	Mon Sep  4 14:15:20 2006
@@ -721,6 +721,7 @@
           Parent::erase(node);
         } catch (const typename NodesImplBase::Notifier::ImmediateDetach&) {
           Parent::clear();
+          throw;
         }
       }
       virtual void erase(const std::vector<Node>& nodes) {
@@ -731,6 +732,7 @@
           Parent::erase(nodes);
         } catch (const typename NodesImplBase::Notifier::ImmediateDetach&) {
           Parent::clear();
+          throw;
         }
       }
       virtual void clear() {



More information about the Lemon-commits mailing list