# HG changeset patch # User deba # Date 1169558019 0 # Node ID 8e3a00d4678e0ba93a6398d9b61d1c97d75db2f1 # Parent eb371753e814bf0ed01fa2dfebfd733f7f2bbc1b Correction of the wrong base class diff -r eb371753e814 -r 8e3a00d4678e lemon/concepts/graph_components.h --- a/lemon/concepts/graph_components.h Tue Jan 23 12:51:39 2007 +0000 +++ b/lemon/concepts/graph_components.h Tue Jan 23 13:13:39 2007 +0000 @@ -2056,7 +2056,7 @@ /// main difference between the base and this interface is that /// the graph alterations should handled already on this level. template - class ClearableUGraphComponent : public ClearableUGraphComponent<_Base> { + class ClearableUGraphComponent : public ClearableGraphComponent<_Base> { public: typedef _Base Base; @@ -2080,8 +2080,7 @@ /// interface is that the graph alterations should handled already /// on this level. template - class ClearableBpUGraphComponent - : public ClearableBpUGraphComponent<_Base> { + class ClearableBpUGraphComponent : public ClearableUGraphComponent<_Base> { public: typedef _Base Base;