fix: add missing comptime

master
menduz 1 year ago committed by GitHub
parent 7d2478c901
commit a4d2e17f60

@ -322,7 +322,7 @@ pub const Registry = struct {
} }
/// shortcut for add-or-replace raw comptime_int/float without having to @as cast /// shortcut for add-or-replace raw comptime_int/float without having to @as cast
pub fn addOrReplaceTyped(self: *Registry, T: type, entity: Entity, value: T) void { pub fn addOrReplaceTyped(self: *Registry, comptime T: type, entity: Entity, value: T) void {
self.addOrReplace(entity, value); self.addOrReplace(entity, value);
} }

Loading…
Cancel
Save