From dffc88a354cde3a838d0e6dc58d24f363e6682be Mon Sep 17 00:00:00 2001 From: g-w1 Date: Sun, 3 Jan 2021 15:00:01 -0500 Subject: [PATCH] update setevalbranchquota: usize -> u32 for master --- src/data/master.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/master.zig b/src/data/master.zig index 9962fe7..9a2a909 100644 --- a/src/data/master.zig +++ b/src/data/master.zig @@ -893,8 +893,8 @@ pub const builtins = [_]Builtin{ }, .{ .name = "@setEvalBranchQuota", - .signature = "@setEvalBranchQuota(new_quota: usize)", - .snippet = "@setEvalBranchQuota(${1:new_quota: usize})", + .signature = "@setEvalBranchQuota(new_quota: u32)", + .snippet = "@setEvalBranchQuota(${1:new_quota: u32})", .documentation = \\ Changes the maximum number of backwards branches that compile-time code execution can use before giving up and making a compile error. \\ If the new_quota is smaller than the default quota (1000) or a previously explicitly set quota, it is ignored.