Browse Source

an additional trivial editorial nit.

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

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

@@ -491,7 +491,8 @@ public:
     /// the node_path is fetched through findEx function call, next_node_path will
     /// store the node path to next_node, which can be used in turn to find
     /// the next node of next node.
-    const RBNode<T> *nextNode(const RBNode<T> *node, const NodeChain &node_path,
+    const RBNode<T>* nextNode(const RBNode<T> *node,
+                              const NodeChain &node_path,
                               NodeChain &next_node_path) const;