commit 268edce862b3bcd0df7ff0efaeb533e95139bc60 (tree)
parent 42b2fb4c5d9be18aa38b1c4ecea2fe59f1c2dba1
Author: Loris Cro <kappaloris@gmail.com>
Date: Wed, 20 Jul 2022 08:34:05 +0200
Autodoc: fix int expr size for 32bit targets
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Autodoc.zig b/src/Autodoc.zig
@@ -567,7 +567,7 @@ const DocData = struct {
fieldRef: FieldRef,
refPath: []Expr,
int: struct {
- value: usize, // direct value
+ value: u64, // direct value
negated: bool = false,
},
int_big: struct {