Skip to content

Commit

Permalink
With capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenperera committed Feb 1, 2025
1 parent 38422ad commit 64c8d82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rustywind-core/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct RustyWind {
impl Default for RustyWind {
fn default() -> Self {
Self {
bump: Bump::with_capacity(1024 * 1024 * 1024 * 500),
bump: Bump::with_capacity(1024 * 1024 * 500),
regex: FinderRegex::DefaultRegex,
sorter: Sorter::DefaultSorter,
allow_duplicates: false,
Expand All @@ -45,7 +45,7 @@ impl RustyWind {
class_wrapping: ClassWrapping,
) -> Self {
Self {
bump: Bump::with_capacity(1024 * 1024 * 1024 * 500),
bump: Bump::with_capacity(1024 * 1024 * 500),
regex,
sorter,
allow_duplicates,
Expand Down

0 comments on commit 64c8d82

Please sign in to comment.