mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
Fix return type of HashMap.getAdapted
This commit is contained in:
parent
fc9430f567
commit
6953c8544b
@ -541,7 +541,7 @@ pub fn HashMap(
|
||||
pub fn get(self: Self, key: K) ?V {
|
||||
return self.unmanaged.getContext(key, self.ctx);
|
||||
}
|
||||
pub fn getAdapted(self: Self, key: anytype, ctx: anytype) ?*V {
|
||||
pub fn getAdapted(self: Self, key: anytype, ctx: anytype) ?V {
|
||||
return self.unmanaged.getAdapted(key, ctx);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user