Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed May 15, 2024
1 parent 28b63fe commit 3107f6b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/aligned_memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ impl<const ALIGN: usize> AlignedMemory<ALIGN> {
// malloc() + memset(), see
// https://github.com/rust-lang/rust/issues/54628
let (mem, align_offset) = VECS.with_borrow_mut(|vecs| {
for (l, v) in vecs.iter() {
eprintln!("size: {l}, buffer count: {}", v.len());
}
vecs.entry(max_len).or_default().pop().map(|mem| {
let align_offset = mem.as_ptr().align_offset(ALIGN);
(mem, align_offset)
Expand Down

0 comments on commit 3107f6b

Please sign in to comment.