]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/deprecated_lints.rs
Improve `implicit_return`
[rust.git] / clippy_lints / src / deprecated_lints.rs
index 66e9f8c8af726e07f8d933e20e47281ee0174f58..4688b3d51050d63c77da6ae1d6663dd64ba20991 100644 (file)
@@ -125,3 +125,12 @@ macro_rules! declare_deprecated_lint {
     pub FIND_MAP,
     "this lint has been replaced by `manual_find_map`, a more specific lint"
 }
+
+declare_deprecated_lint! {
+    /// **What it does:** Nothing. This lint has been deprecated.
+    ///
+    /// **Deprecation reason:** This lint has been replaced by `manual_filter_map`, a
+    /// more specific lint.
+    pub FILTER_MAP,
+    "this lint has been replaced by `manual_filter_map`, a more specific lint"
+}