Use root.assert instead of std.debug.assert in adapters.Chain

This commit is contained in:
Luuk Machielse 2025-12-09 16:32:04 +01:00
parent b53bb564c1
commit bb3e7ffc6c

View file

@ -306,7 +306,7 @@ pub const adapters = struct {
}
pub fn Chain(comptime First: type, comptime Second: type) type {
comptime std.debug.assert(First.Item == Second.Item);
comptime assert(First.Item == Second.Item);
return struct {
first: First,
second: Second,