[librsvg: 8/13] Suppress warning about module inception, this is intentional here




commit 0272fc01c23a6cccba49eefb0192dc2bc4387b0e
Author: Sven Neumann <sven svenfoo org>
Date:   Tue Aug 25 20:02:48 2020 +0200

    Suppress warning about module inception, this is intentional here
    
    See https://rust-lang.github.io/rust-clippy/master/index.html#module_inception

 rsvg_internals/src/rect.rs | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/rsvg_internals/src/rect.rs b/rsvg_internals/src/rect.rs
index acb522d0..da6829e2 100644
--- a/rsvg_internals/src/rect.rs
+++ b/rsvg_internals/src/rect.rs
@@ -1,5 +1,6 @@
 //! Types for rectangles.
 
+#[allow(clippy::module_inception)]
 mod rect {
     use crate::float_eq_cairo::ApproxEqCairo;
     use core::ops::{Add, Range, Sub};


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]