From e51cd6e8224c71f7c178a463dd096c3fee37a011 Mon Sep 17 00:00:00 2001 From: Maybe Waffle Date: Wed, 23 Nov 2022 19:07:02 +0000 Subject: [PATCH] Don't accept `Mutability` by ref --- compiler/rustc_ast/src/ast.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/rustc_ast/src/ast.rs b/compiler/rustc_ast/src/ast.rs index 146fe7cd5938..dc57f278df84 100644 --- a/compiler/rustc_ast/src/ast.rs +++ b/compiler/rustc_ast/src/ast.rs @@ -789,7 +789,7 @@ impl Mutability { } /// Returns `""` (empty string) or `"mut "` depending on the mutability. - pub fn prefix_str(&self) -> &'static str { + pub fn prefix_str(self) -> &'static str { match self { Mutability::Mut => "mut ", Mutability::Not => "", @@ -797,7 +797,7 @@ impl Mutability { } /// Returns `"&"` or `"&mut "` depending on the mutability. - pub fn ref_prefix_str(&self) -> &'static str { + pub fn ref_prefix_str(self) -> &'static str { match self { Mutability::Not => "&", Mutability::Mut => "&mut ",