| commit | db450b0a9de864e147d9c881e30d629efadd4cf6 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Tue May 05 10:16:57 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Tue May 05 10:16:57 2020 -0700 |
| tree | e6cdeea5461763f68279be4e9d963784c9d5a3e8 | |
| parent | c79ba750b0796010ef852c63a034dff19b41e6b1 [diff] [blame] |
Suppress some lints in cxx-build
diff --git a/gen/build/src/lib.rs b/gen/build/src/lib.rs index 5bee67f..cabe2b1 100644 --- a/gen/build/src/lib.rs +++ b/gen/build/src/lib.rs
@@ -45,6 +45,13 @@ //! $ cxxbridge src/main.rs > path/to/mybridge.cc //! ``` +#![allow( + clippy::inherent_to_string, + clippy::needless_doctest_main, + clippy::new_without_default, + clippy::toplevel_ref_arg +)] + mod error; mod gen; mod paths;