From 4087dcf1db38b459a94b9fa4b7cc45dfef8b4dd0 Mon Sep 17 00:00:00 2001 From: Johann Hemmann Date: Fri, 19 Jan 2024 16:55:45 +0100 Subject: [PATCH] Add comment about false positive clippy lint --- lib/la-arena/src/map.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/la-arena/src/map.rs b/lib/la-arena/src/map.rs index 7e2c1f801d..c6a43d8f9a 100644 --- a/lib/la-arena/src/map.rs +++ b/lib/la-arena/src/map.rs @@ -252,6 +252,7 @@ where { /// Ensures a value is in the entry by inserting the default value if empty, and returns a mutable reference /// to the value in the entry. + // BUG this clippy lint is a false positive #[allow(clippy::unwrap_or_default)] pub fn or_default(self) -> &'a mut V { self.or_insert_with(Default::default)