Skip to content

Commit

Permalink
cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Jul 1, 2024
1 parent 5744314 commit c070f12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ once_cell = { version = "1.19.0", default-features = false }
phf = { version = "0.11.2", default-features = false }
pollster = "0.3.0"
regex = "1.10.5"
regress = { version="0.10.0", features = ["utf16"]}
regress = { version = "0.10.0", features = ["utf16"] }
rustc-hash = { version = "2.0.0", default-features = false }
serde_json = "1.0.119"
serde = "1.0.203"
Expand Down
2 changes: 1 addition & 1 deletion core/string/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ thread_local! {
static RAW_STATICS_CACHE: FxHashMap<JsStr<'static>, usize> = {
let mut constants = HashMap::with_capacity_and_hasher(
RAW_STATICS.len(),
FxBuildHasher::default()
FxBuildHasher
);

for (idx, &s) in RAW_STATICS.iter().enumerate() {
Expand Down

0 comments on commit c070f12

Please sign in to comment.