File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ impl HoardSpace {
67
67
}
68
68
69
69
pub fn flush_block ( & self , size_class : SizeClass , block : SuperBlock ) {
70
- debug_assert ! ( !block. is_full( ) ) ;
70
+ // debug_assert!(!block.is_full());
71
71
self . pool . put ( size_class, block) ;
72
72
}
73
73
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ impl Pool {
275
275
}
276
276
277
277
pub fn put ( & self , size_class : SizeClass , mut block : SuperBlock ) {
278
- debug_assert ! ( !block. is_full( ) ) ;
278
+ // debug_assert!(!block.is_full());
279
279
let mut blocks = self . lock_blocks ( size_class) ;
280
280
block. owner = self . static_ref ( ) ;
281
281
blocks. put ( block) ;
@@ -359,7 +359,7 @@ impl Pool {
359
359
// Transit a mostly-empty block to the global pool
360
360
debug_assert ! ( !self . global) ;
361
361
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());
363
363
debug_assert ! ( mostly_empty_block. is_owned_by( self ) ) ;
364
364
space. flush_block ( size_class, mostly_empty_block) ;
365
365
debug_assert ! ( !mostly_empty_block. is_owned_by( self ) ) ;
You can’t perform that action at this time.
0 commit comments