aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2024-05-24 14:55:21 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2024-05-24 14:55:21 +0200
commit5c06480ce0d6b3352f3a7977a692ef3d322c49b6 (patch)
tree4881b9d076cdf89d59b7f777cc709e41c831a5ab /examples
parente2af3652c50b14eafd4086e081fd3024a8bd63e9 (diff)
Add `core:container/rbtree` to examples/all
Diffstat (limited to 'examples')
-rw-r--r--examples/all/all_main.odin2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin
index 3eebdf0b0..8eba0fb5d 100644
--- a/examples/all/all_main.odin
+++ b/examples/all/all_main.odin
@@ -21,6 +21,7 @@ import queue "core:container/queue"
import small_array "core:container/small_array"
import lru "core:container/lru"
import list "core:container/intrusive/list"
+import rbtree "core:container/rbtree"
import topological_sort "core:container/topological_sort"
import crypto "core:crypto"
@@ -147,6 +148,7 @@ _ :: queue
_ :: small_array
_ :: lru
_ :: list
+_ :: rbtree
_ :: topological_sort
_ :: crypto
_ :: crypto_hash