-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Reduce default 'large array' threshold #13485
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5182,7 +5182,7 @@ impl ShouldImplTraitCase { | |
} | ||
|
||
#[rustfmt::skip] | ||
const TRAIT_METHODS: [ShouldImplTraitCase; 30] = [ | ||
static TRAIT_METHODS: [ShouldImplTraitCase; 30] = [ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change breaks the Clippy sync when testing the parallel compiler: rust-lang/rust#131892 IIUC: With this being a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, for now we can revert back to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done in rust-lang/rust@cf918d5 |
||
ShouldImplTraitCase::new("std::ops::Add", "add", 2, FN_HEADER, SelfKind::Value, OutType::Any, true), | ||
ShouldImplTraitCase::new("std::convert::AsMut", "as_mut", 1, FN_HEADER, SelfKind::RefMut, OutType::Ref, true), | ||
ShouldImplTraitCase::new("std::convert::AsRef", "as_ref", 1, FN_HEADER, SelfKind::Ref, OutType::Ref, true), | ||
|
Uh oh!
There was an error while loading. Please reload this page.