From b9e265f46b8c1a2a8fbeaebe15c32737b325fc9b Mon Sep 17 00:00:00 2001 From: Guillaume Bittoun Date: Sat, 18 Oct 2014 10:06:47 +0000 Subject: [PATCH] avl_tree: tiny bug fix. --- src/lol/base/avl_tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lol/base/avl_tree.h b/src/lol/base/avl_tree.h index 7abc0207..a49058d7 100644 --- a/src/lol/base/avl_tree.h +++ b/src/lol/base/avl_tree.h @@ -39,7 +39,7 @@ public: { this->clear(); - this->m_count = other->m_count; + this->m_count = other.m_count; for (auto iterator : other) this->insert(iterator.key, iterator.value);