rust: Quiet clippy Vec<Foo> arg

cxx.rs only supports `Vec<String>` and not `&[String]` right now.
This commit is contained in:
Colin Walters 2021-02-17 00:32:59 +00:00 committed by OpenShift Merge Robot
parent 35fcf3eac0
commit c027b638db

View File

@ -9,6 +9,7 @@
*/
#![deny(unused_must_use)]
#![allow(clippy::ptr_arg)]
// pub(crate) utilities
mod cxxrsutil;