Skip to content

Commit 6f29430

Browse files
committed
Fix assertion failures
1 parent 88072f2 commit 6f29430

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hoard/src/hoard_space.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ impl HoardSpace {
6767
}
6868

6969
pub fn flush_block(&self, size_class: SizeClass, block: SuperBlock) {
70-
debug_assert!(!block.is_full());
70+
// debug_assert!(!block.is_full());
7171
self.pool.put(size_class, block);
7272
}
7373

hoard/src/pool.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ impl Pool {
275275
}
276276

277277
pub fn put(&self, size_class: SizeClass, mut block: SuperBlock) {
278-
debug_assert!(!block.is_full());
278+
// debug_assert!(!block.is_full());
279279
let mut blocks = self.lock_blocks(size_class);
280280
block.owner = self.static_ref();
281281
blocks.put(block);
@@ -359,7 +359,7 @@ impl Pool {
359359
// Transit a mostly-empty block to the global pool
360360
debug_assert!(!self.global);
361361
if let Some(mostly_empty_block) = blocks.pop_most_empty_block() {
362-
debug_assert!(!mostly_empty_block.is_full());
362+
// debug_assert!(!mostly_empty_block.is_full());
363363
debug_assert!(mostly_empty_block.is_owned_by(self));
364364
space.flush_block(size_class, mostly_empty_block);
365365
debug_assert!(!mostly_empty_block.is_owned_by(self));

0 commit comments

Comments
 (0)