From f5a5c824e07e5fc984136069a1769edda4967c77 Mon Sep 17 00:00:00 2001 From: Lee Lup Yuen Date: Mon, 20 Jun 2022 20:53:23 +0800 Subject: [PATCH] Increase branch quota --- reflect.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reflect.zig b/reflect.zig index d8a50e0..cbbd348 100644 --- a/reflect.zig +++ b/reflect.zig @@ -829,8 +829,8 @@ const debug = std.log.debug; fn reflect() void { // We run this at Compile-Time (instead of Runtime)... comptime { - // Allow Zig Compiler to loop up to 10,000,000 times (Default is 1,000) - @setEvalBranchQuota(10_000_000); + // Allow Zig Compiler to loop up to 100,000,000 times (Default is 1,000) + @setEvalBranchQuota(100_000_000); // Test Zig Reflection test_reflection();