authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-01-18 23:53:15 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-01-18 23:53:15 -08:00
logad173910f7d6dfa9e2e8e8fea1cb654a1b11de40
treeca3f97188d9fbc03e2215e34c5d34266cd77326f
parent53ec18c2b1f857daa22da6ab37694eeaeda3911e

StaticMultiList: increase branch quota


1 files changed, 1 insertions(+), 0 deletions(-)

src/StaticMultiList.zig+1
...@@ -11,6 +11,7 @@ pub fn StaticMultiList(T: type) type {...@@ -11,6 +11,7 @@ pub fn StaticMultiList(T: type) type {
1111
12 pub fn initComptime(comptime data: []const T) @This() {12 pub fn initComptime(comptime data: []const T) @This() {
13 return comptime blk: {13 return comptime blk: {
14 @setEvalBranchQuota(1_000_000_000);
14 var temp: StructOfArrays(data.len, T) = undefined;15 var temp: StructOfArrays(data.len, T) = undefined;
15 for (data, 0..) |item, i| {16 for (data, 0..) |item, i| {
16 for (std.meta.fieldNames(T)) |name| {17 for (std.meta.fieldNames(T)) |name| {