summaryrefslogtreecommitdiffstats
path: root/core/set.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/set.h')
-rw-r--r--core/set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/set.h b/core/set.h
index 13c2b3a4f6..a921fc661f 100644
--- a/core/set.h
+++ b/core/set.h
@@ -416,7 +416,7 @@ private:
Element *aux=node->parent->left;
if (aux->color==RED) {
_set_color(aux,BLACK);
- _set_color(node->parent,RED);;
+ _set_color(node->parent,RED);
_rotate_right(node->parent);
aux=node->parent->left;
}