]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2218] Make DomainTreeNode::predecessor() and ::successor() public
authorMukund Sivaraman <muks@isc.org>
Wed, 19 Sep 2012 07:06:08 +0000 (12:36 +0530)
committerMukund Sivaraman <muks@isc.org>
Wed, 19 Sep 2012 07:06:08 +0000 (12:36 +0530)
src/lib/datasrc/memory/domaintree.h

index 945de448bb2b654d621c4f32407eabe6892d4d26..339a9053293c7b77aabfca2ae364b78676b49573 100644 (file)
@@ -394,7 +394,6 @@ public:
     /// This method never throws an exception.
     const DomainTreeNode<T>* getUpperNode() const;
 
-private:
     /// \brief return the next node which is bigger than current node
     /// in the same subtree
     ///
@@ -429,6 +428,7 @@ private:
     /// This method never throws an exception.
     const DomainTreeNode<T>* predecessor() const;
 
+private:
     /// \brief private shared implementation of successor and predecessor
     ///
     /// As the two mentioned functions are merely mirror images of each other,