1
0
Fork 0
forked from wry/wry

autocommit 2022-01-30 22:41:40 CET

This commit is contained in:
Julian Orth 2022-01-30 22:41:40 +01:00
parent f577f5feef
commit 865d5f295d
26 changed files with 1085 additions and 676 deletions

View file

@ -45,6 +45,6 @@ impl<K: Eq + Hash, V: Clone> CopyHashMap<K, V> {
}
pub fn is_empty(&self) -> bool {
self.map.borrow().is_empty()
self.map.borrow_mut().is_empty()
}
}