From e684626fc4382905fb2ea073e13cf4a4e0079f3c Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Wed, 16 Jun 2021 18:58:32 +0800 Subject: [PATCH] Remove unnecessary #[must_use]. --- src/scope.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/scope.rs b/src/scope.rs index b1d7c749..8f6138eb 100644 --- a/src/scope.rs +++ b/src/scope.rs @@ -122,7 +122,6 @@ impl<'a> Scope<'a> { /// assert!(my_scope.is_empty()); /// ``` #[inline(always)] - #[must_use] pub fn clear(&mut self) -> &mut Self { self.names.clear(); self.values.clear();