Merge pull request #715 from Platin21/patch-1

Update ring.odin
This commit is contained in:
gingerBill
2020-08-23 17:13:29 +01:00
committed by GitHub

View File

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