| commit | a95b2341d085375950dc726475c87ebf5d19322f | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Thu Apr 09 23:26:05 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Thu Apr 09 23:26:16 2020 -0700 |
| tree | 57901a61c0991ab387cc8bebda55e868e2613003 | |
| parent | 4bc9815c6aeda5a4d09a7971afc2d490a24cc41c [diff] [blame] |
Suppress clippy::ptr_arg triggering on &String in tests
diff --git a/tests/ffi/lib.rs b/tests/ffi/lib.rs index 7df0110..68651ea 100644 --- a/tests/ffi/lib.rs +++ b/tests/ffi/lib.rs
@@ -1,4 +1,8 @@ -#![allow(clippy::boxed_local, clippy::trivially_copy_pass_by_ref)] +#![allow( + clippy::boxed_local, + clippy::ptr_arg, + clippy::trivially_copy_pass_by_ref +)] use cxx::{CxxString, UniquePtr}; use std::fmt::{self, Display};