diff -r 4a170261cc54 -r da87dbdf3daf lemon/concepts/graph_components.h --- a/lemon/concepts/graph_components.h Thu Feb 25 09:46:12 2021 +0100 +++ b/lemon/concepts/graph_components.h Tue Jul 28 21:23:36 2020 +0200 @@ -219,6 +219,12 @@ /// Copy constructor. Edge(const Edge &) : Parent() {} + /// Assignment operator + + /// Assignment operator. + /// + const Edge &operator=(const Edge&) { return *this; } + /// \brief Constructor for conversion from \c INVALID. /// /// Constructor for conversion from \c INVALID. @@ -336,6 +342,11 @@ /// /// Copy constructor. RedNode(const RedNode &) : Parent() {} + /// Assignment operator + + /// Assignment operator. + /// + const RedNode &operator=(const RedNode&) { return *this; } /// \brief Constructor for conversion from \c INVALID. /// @@ -365,6 +376,12 @@ /// /// Copy constructor. BlueNode(const BlueNode &) : Parent() {} + /// Assignment operator + + /// Assignment operator. + /// + const BlueNode &operator=(const BlueNode&) { return *this; } + /// \brief Constructor for conversion from \c INVALID. ///