This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
avl_tree: tiny bug fix.
undefined
Guillaume Bittoun
Sam Hocevar
<sam@hocevar.net>
10 years ago
parent
500e40c93d
commit
b9e265f46b
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/lol/base/avl_tree.h
+ 1
- 1
src/lol/base/avl_tree.h
View File
@@ -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);
Write
Preview
Loading…
Cancel
Save