From 268edce862b3bcd0df7ff0efaeb533e95139bc60 Mon Sep 17 00:00:00 2001 From: Loris Cro Date: Wed, 20 Jul 2022 08:34:05 +0200 Subject: [PATCH] Autodoc: fix int expr size for 32bit targets --- src/Autodoc.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Autodoc.zig b/src/Autodoc.zig index 9549cedb8d..a2767aa9ee 100644 --- 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 {