From 71675ecaf8a33b3ae3adee48b2f1e9fcfa5c8c1b Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Thu, 13 Nov 2025 09:35:32 +0100 Subject: BinaryEncoding.c: Define nw_lo count as uint32 Otherwise, it would not be possible for engines to look up the offset with O(1) complexity because `count` would have a variable length. --- BinaryEncoding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BinaryEncoding.md') diff --git a/BinaryEncoding.md b/BinaryEncoding.md index 8a6c9a8..bcb6b69 100644 --- a/BinaryEncoding.md +++ b/BinaryEncoding.md @@ -632,7 +632,7 @@ Where each non-imported function defines a `label_offset` entry as follows: | Field | Type | Description | | ----- | ---- | ----------- | -| count | varuint32 | number of label entries | +| count | `uint32` | number of label entries | | offset | `label_entry*` | label entries | where a `label_entry` is encoded as: -- cgit v1.2.3