diff options
| author | gingerBill <bill@gingerbill.org> | 2021-04-18 19:15:14 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-04-18 19:15:14 +0100 |
| commit | 9b3fb25a41ad21949c21253e1dae87b162ed400f (patch) | |
| tree | 03f2d44ad90aca48e6efa655ebdf928ba3315880 /src/docs_format.cpp | |
| parent | 2ce98734648eb2f6e332d7e1cc0c240cba81517c (diff) | |
Fix enumerated arrays for .odin-doc
Diffstat (limited to 'src/docs_format.cpp')
| -rw-r--r-- | src/docs_format.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/docs_format.cpp b/src/docs_format.cpp index f30a0bf43..8824153ad 100644 --- a/src/docs_format.cpp +++ b/src/docs_format.cpp @@ -131,7 +131,7 @@ struct OdinDocType { // Used by some types u32 elem_count_len; - u64 elem_counts[OdinDocType_ElemsCap]; + i64 elem_counts[OdinDocType_ElemsCap]; // Each of these is esed by some types, not all OdinDocArray<OdinDocTypeIndex> types; |