diff options
Diffstat (limited to 'components/plugins/lib.rs')
-rw-r--r-- | components/plugins/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/plugins/lib.rs b/components/plugins/lib.rs index a2babd3bfab..9ee553145a5 100644 --- a/components/plugins/lib.rs +++ b/components/plugins/lib.rs @@ -39,7 +39,7 @@ pub mod lints; /// Autogenerates implementations of Reflectable on DOM structs pub mod reflector; /// Utilities for writing plugins -pub mod utils; +mod utils; #[plugin_registrar] pub fn plugin_registrar(reg: &mut Registry) { @@ -63,5 +63,5 @@ fn register_clippy(reg: &mut Registry) { ::clippy::plugin_registrar(reg); } #[cfg(not(feature = "clippy"))] -fn register_clippy(reg: &mut Registry) { +fn register_clippy(_reg: &mut Registry) { } |