Skip to content

Commit b6c6063

Browse files
committed
Ignore trivially_copy_pass_by_ref pedantic clippy lint
When syn/clone-impls isn't enabled, this type is not Copy. warning: this argument (4 byte) is passed by reference, but would be more efficient if passed by value (limit: 8 byte) --> src/lifetime.rs:22:49 | 22 | fn visit_opt_lifetime(&mut self, reference: &Token![&], lifetime: &mut Option<Lifetime>) { | ^^^^^^^^^^ help: consider passing by value instead: `$crate::token::And` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref = note: `-W clippy::trivially-copy-pass-by-ref` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::trivially_copy_pass_by_ref)]`
1 parent 315fd90 commit b6c6063

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,8 @@
327327
clippy::module_name_repetitions,
328328
clippy::shadow_unrelated,
329329
clippy::similar_names,
330-
clippy::too_many_lines
330+
clippy::too_many_lines,
331+
clippy::trivially_copy_pass_by_ref
331332
)]
332333

333334
extern crate proc_macro;

0 commit comments

Comments
 (0)