summaryrefslogtreecommitdiff
path: root/lib/containers/rbtree.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/containers/rbtree.go')
-rw-r--r--lib/containers/rbtree.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/containers/rbtree.go b/lib/containers/rbtree.go
index 4125847..6182150 100644
--- a/lib/containers/rbtree.go
+++ b/lib/containers/rbtree.go
@@ -12,8 +12,8 @@ import (
type Color bool
const (
- Black = Color(false)
- Red = Color(true)
+ Black Color = false
+ Red Color = true
)
type RBNode[T Ordered[T]] struct {