Correction of the wrong base class
authordeba
Tue, 23 Jan 2007 13:13:39 +0000
changeset 23518e3a00d4678e
parent 2350 eb371753e814
child 2352 5e273e0bd5e2
Correction of the wrong base class
lemon/concepts/graph_components.h
     1.1 --- a/lemon/concepts/graph_components.h	Tue Jan 23 12:51:39 2007 +0000
     1.2 +++ b/lemon/concepts/graph_components.h	Tue Jan 23 13:13:39 2007 +0000
     1.3 @@ -2056,7 +2056,7 @@
     1.4      /// main difference between the base and this interface is that
     1.5      /// the graph alterations should handled already on this level.
     1.6      template <typename _Base = BaseUGraphComponent>
     1.7 -    class ClearableUGraphComponent : public ClearableUGraphComponent<_Base> {
     1.8 +    class ClearableUGraphComponent : public ClearableGraphComponent<_Base> {
     1.9      public:
    1.10  
    1.11        typedef _Base Base;
    1.12 @@ -2080,8 +2080,7 @@
    1.13      /// interface is that the graph alterations should handled already
    1.14      /// on this level.
    1.15      template <typename _Base = BaseUGraphComponent>
    1.16 -    class ClearableBpUGraphComponent 
    1.17 -      : public ClearableBpUGraphComponent<_Base> {
    1.18 +    class ClearableBpUGraphComponent : public ClearableUGraphComponent<_Base> {
    1.19      public:
    1.20  
    1.21        typedef _Base Base;