We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61352b6 commit b69ac1dCopy full SHA for b69ac1d
rust/bear/src/output/clang/type_de.rs
@@ -30,7 +30,7 @@ impl<'de> Deserialize<'de> for Entry {
30
{
31
struct FieldVisitor;
32
33
- impl<'de> Visitor<'de> for FieldVisitor {
+ impl Visitor<'_> for FieldVisitor {
34
type Value = Field;
35
36
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
rust/bear/src/semantic/interpreters/gcc.rs
@@ -93,7 +93,7 @@ mod internal {
93
meaning: Meaning,
94
}
95
96
- impl<'a> Argument<'a> {
+ impl Argument<'_> {
97
pub(super) fn passes(flags: &[Argument]) -> Vec<CompilerPass> {
98
let mut pass: Pass = Pass::Linker;
99
let mut inputs: Vec<String> = vec![];
0 commit comments