diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-04-19 18:15:16 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-04-19 18:15:16 +0200 |
commit | 5645a59e0556018ea05922a4f10afb7a6cc462cd (patch) | |
tree | 73c1e94f7eda2d6f57d814fac398e4ca76a94023 /components/plugins | |
parent | a7c885706ec4bd526b00ecad5d870415ae6cc1e1 (diff) | |
download | servo-5645a59e0556018ea05922a4f10afb7a6cc462cd.tar.gz servo-5645a59e0556018ea05922a4f10afb7a6cc462cd.zip |
Fix some compile warnings.
Diffstat (limited to 'components/plugins')
-rw-r--r-- | components/plugins/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/plugins/lib.rs b/components/plugins/lib.rs index a2babd3bfab..69ddbc9a094 100644 --- a/components/plugins/lib.rs +++ b/components/plugins/lib.rs @@ -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) { } |