| ... | @@ -541,7 +541,7 @@ pub fn HashMap( | ... | @@ -541,7 +541,7 @@ pub fn HashMap( |
| 541 | pub fn get(self: Self, key: K) ?V { | 541 | pub fn get(self: Self, key: K) ?V { |
| 542 | return self.unmanaged.getContext(key, self.ctx); | 542 | return self.unmanaged.getContext(key, self.ctx); |
| 543 | } | 543 | } |
| 544 | pub fn getAdapted(self: Self, key: anytype, ctx: anytype) ?*V { | 544 | pub fn getAdapted(self: Self, key: anytype, ctx: anytype) ?V { |
| 545 | return self.unmanaged.getAdapted(key, ctx); | 545 | return self.unmanaged.getAdapted(key, ctx); |
| 546 | } | 546 | } |
| 547 | | 547 | |