dictionary/mutable: fix set() implementation

This commit is contained in:
lummax 2015-09-09 10:03:22 +02:00 committed by meh
parent 7c42d6a2e9
commit c6b6f3720a

View File

@ -34,6 +34,7 @@ impl<'a> Ref<'a> {
}
self.ptr = ptr;
self.imm = immutable::Ref::wrap(ptr);
}
}
}