module: bump eval branch quota on ComponentName

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-05-12 14:25:59 +02:00
parent 0200bed7ec
commit 07e61fde30

View file

@ -813,6 +813,7 @@ pub fn ComponentNameM(comptime M: type) type {
/// enum describing component names for all of the modules /// enum describing component names for all of the modules
pub fn ComponentName(comptime modules: anytype) type { pub fn ComponentName(comptime modules: anytype) type {
@setEvalBranchQuota(10_000);
var enum_fields: []const std.builtin.Type.EnumField = &[0]std.builtin.Type.EnumField{}; var enum_fields: []const std.builtin.Type.EnumField = &[0]std.builtin.Type.EnumField{};
var i: usize = 0; var i: usize = 0;
inline for (modules) |M| { inline for (modules) |M| {