diff options
author | Cradmon <lourencobic@gmail.com> | 2017-10-24 15:59:54 +0100 |
---|---|---|
committer | Cradmon <lourencobic@gmail.com> | 2017-10-24 15:59:54 +0100 |
commit | 8da9fd5d2319f9f901c0359e1190e8a62d6fbfe6 (patch) | |
tree | e5a86831b6c893c57ec87317c405e67c787fd3b6 /core/set.h | |
parent | 0268a95828bd0690aedadf0e2503f1e1f67bf81f (diff) | |
download | redot-engine-8da9fd5d2319f9f901c0359e1190e8a62d6fbfe6.tar.gz |
Small fix in core/set.h and similar fix in core/map.h
Diffstat (limited to 'core/set.h')
-rw-r--r-- | core/set.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/set.h b/core/set.h index 0f48e07520..331979d4e3 100644 --- a/core/set.h +++ b/core/set.h @@ -424,7 +424,6 @@ private: Element *rp = ((p_node->left == _data._nil) || (p_node->right == _data._nil)) ? p_node : p_node->_next; Element *node = (rp->left == _data._nil) ? rp->right : rp->left; - node->parent = rp->parent; Element *sibling; if (rp == rp->parent->left) { |