diff options
| author | Cradmon | 2017-10-24 15:59:54 +0100 |
|---|---|---|
| committer | Cradmon | 2017-10-24 15:59:54 +0100 |
| commit | 8da9fd5d2319f9f901c0359e1190e8a62d6fbfe6 (patch) | |
| tree | e5a86831b6c893c57ec87317c405e67c787fd3b6 | |
| parent | 0268a95828bd0690aedadf0e2503f1e1f67bf81f (diff) | |
| download | godot-8da9fd5d2319f9f901c0359e1190e8a62d6fbfe6.tar.gz godot-8da9fd5d2319f9f901c0359e1190e8a62d6fbfe6.tar.zst godot-8da9fd5d2319f9f901c0359e1190e8a62d6fbfe6.zip | |
| -rw-r--r-- | core/map.h | 1 | ||||
| -rw-r--r-- | core/set.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/core/map.h b/core/map.h index f01062ebe..fb24a5868 100644 --- a/core/map.h +++ b/core/map.h @@ -438,7 +438,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) { diff --git a/core/set.h b/core/set.h index 0f48e0752..331979d4e 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) { |
