Commit 268edce862

Loris Cro <kappaloris@gmail.com>
2022-07-20 08:34:05
Autodoc: fix int expr size for 32bit targets
1 parent 42b2fb4
Changed files (1)
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 {