Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
- name: Run tests
run: cargo test --all-features --all-targets
- name: Run clippy
run: cargo clippy --all-features --all-targets -- --no-deps --deny warnings
run: cargo clippy --workspace --all-features --all-targets -- --no-deps --deny warnings
1 change: 1 addition & 0 deletions crates/stdext/src/arena/scratch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ mod multi_threaded {
static INIT_SIZE: AtomicUsize = AtomicUsize::new(128 * MEBI);

/// Sets the default scratch arena size.
#[allow(dead_code)]
pub fn init(capacity: usize) -> io::Result<()> {
if capacity != 0 {
INIT_SIZE.store(capacity, Ordering::Relaxed);
Expand Down
Loading