about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/errors.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/errors.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_llvm/src/errors.rs b/compiler/rustc_codegen_llvm/src/errors.rs
index c9af545a818..cf896f38c8c 100644
--- a/compiler/rustc_codegen_llvm/src/errors.rs
+++ b/compiler/rustc_codegen_llvm/src/errors.rs
@@ -2,9 +2,9 @@ use rustc_errors::fluent;
 use rustc_errors::DiagnosticBuilder;
 use rustc_session::SessionDiagnostic;
 
-pub(crate) enum UnknownCTargetFeature {
-    UnknownFeaturePrefix { feature: String },
-    UnknownFeature { feature: String, rust_feature: Option<String> },
+pub(crate) enum UnknownCTargetFeature<'a> {
+    UnknownFeaturePrefix { feature: &'a str },
+    UnknownFeature { feature: &'a str, rust_feature: Option<&'a str> },
 }
 
 impl SessionDiagnostic<'_, ()> for UnknownCTargetFeature {