From 3946f357e8d2159a0dd25d4042ba632d7802d07f Mon Sep 17 00:00:00 2001 From: Platin21 Date: Sat, 22 Aug 2020 13:12:18 +0200 Subject: [PATCH] Update ring.odin Someone missed the T type here ;) --- core/container/ring.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/container/ring.odin b/core/container/ring.odin index 518030d83..86e04fb50 100644 --- a/core/container/ring.odin +++ b/core/container/ring.odin @@ -2,7 +2,7 @@ package container Ring :: struct(T: typeid) { - next, prev: ^Ring, + next, prev: ^Ring(T), value: T, }