From 8f883591d45c012cfc2f194f6097bd8378cba048 Mon Sep 17 00:00:00 2001 From: tclinken Date: Sat, 16 May 2020 14:58:09 -0700 Subject: [PATCH] Renamed _moveIterator to moveIteratorImpl --- flow/IndexedSet.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flow/IndexedSet.h b/flow/IndexedSet.h index fcad834974..f9f6c67da9 100644 --- a/flow/IndexedSet.h +++ b/flow/IndexedSet.h @@ -319,7 +319,7 @@ private: } template - static void _moveIterator(std::conditional_t*& node) { + static void moveIteratorImpl(std::conditional_t*& node) { if (node->child[0 ^ direction]) { node = node->child[0 ^ direction]; while (node->child[1 ^ direction]) node = node->child[1 ^ direction]; @@ -332,11 +332,11 @@ private: // direction 0 = left, 1 = right template static void moveIterator(Node const*& node) { - _moveIterator(node); + moveIteratorImpl(node); } template static void moveIterator(Node*& node) { - _moveIterator(node); + moveIteratorImpl(node); } public: // but testonly