Browse Source

another editorial nit: adding a space

JINMEI Tatuya 14 years ago
parent
commit
9d0ec38ee3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/datasrc/rbtree.h

+ 1 - 1
src/lib/datasrc/rbtree.h

@@ -246,7 +246,7 @@ RBNode<T>::~RBNode() {
 
 template <typename T>
 const RBNode<T> *
-RBNode<T>::successor()const {
+RBNode<T>::successor() const {
     const RBNode<T>* current = this;
     // If it has right node, the successor is the left-most node of the right
     // subtree.