Update ring.odin

Someone missed the T type here ;)
This commit is contained in:
Platin21
2020-08-22 13:12:18 +02:00
committed by GitHub
parent b9b2b90f0c
commit 3946f357e8

View File

@@ -2,7 +2,7 @@ package container
Ring :: struct(T: typeid) {
next, prev: ^Ring,
next, prev: ^Ring(T),
value: T,
}