Răsfoiți Sursa

Change elem_counts to `i64le` from `u64`

gingerBill 4 ani în urmă
părinte
comite
986844a0f0
1 a modificat fișierele cu 2 adăugiri și 1 ștergeri
  1. 2 1
      core/odin/doc-format/doc_format.odin

+ 2 - 1
core/odin/doc-format/doc_format.odin

@@ -157,7 +157,8 @@ Type :: struct {
 
 
 	// Used by some types
 	// Used by some types
 	elem_count_len: u32le,
 	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
 	// Each of these is esed by some types, not all
 	types:         Array(Type_Index),
 	types:         Array(Type_Index),