fix: remove unnecessary comptime qualifier on parameter
This commit is contained in:
parent
b353458d68
commit
d0bcd7a886
|
@ -86,7 +86,7 @@ pub fn HashArrayMappedTrie(comptime K: type, comptime V: type, comptime Context:
|
|||
}
|
||||
}
|
||||
|
||||
pub fn insert(self: *Self, allocator: Allocator, comptime key: K, value: V) !void {
|
||||
pub fn insert(self: *Self, allocator: Allocator, key: K, value: V) !void {
|
||||
const hash = Context.hash(key);
|
||||
|
||||
// most siginificant t bits from hash
|
||||
|
|
Loading…
Reference in New Issue