Fix return type of HashMap.getAdapted
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user