From 986844a0f02028dbc7e4ad6147c253c17b3c2336 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 18 Apr 2021 18:48:56 +0100 Subject: [PATCH] Change elem_counts to `i64le` from `u64` --- core/odin/doc-format/doc_format.odin | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/odin/doc-format/doc_format.odin b/core/odin/doc-format/doc_format.odin index 23e54f5fd..89bce4a1d 100644 --- a/core/odin/doc-format/doc_format.odin +++ b/core/odin/doc-format/doc_format.odin @@ -157,7 +157,8 @@ Type :: struct { // Used by some types elem_count_len: u32le, - elem_counts: [Type_Elems_Cap]u64, + // for Enumerated Ranges, + elem_counts: [Type_Elems_Cap]i64le, // Each of these is esed by some types, not all types: Array(Type_Index),