Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix loop recursion
  • Loading branch information
Dunqing committed Oct 14, 2024
commit 29c102e66831dd6c7e6d5c1ac779f052eaeaba5a
2 changes: 1 addition & 1 deletion crates/oxc_allocator/src/raw_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2829,7 +2829,7 @@ impl<'bump, T> Vec<'bump, T> {
if mem::size_of::<T>() == 0 {
!0
} else {
self.cap()
self.cap as usize
}
}

Expand Down
Loading