Remove superfluous space from -Wrange-loop-construct message
authorAaron Puchert <aaronpuchert@alice-dsl.net>
Sun, 2 Feb 2020 15:22:58 +0000 (16:22 +0100)
committerAaron Puchert <aaronpuchert@alice-dsl.net>
Sun, 2 Feb 2020 15:22:58 +0000 (16:22 +0100)
clang/include/clang/Basic/DiagnosticSemaKinds.td

index 8d2aacc..d893289 100644 (file)
@@ -2383,7 +2383,7 @@ def note_for_range_begin_end : Note<
 def warn_for_range_const_reference_copy : Warning<
   "loop variable %0 "
   "%diff{has type $ but is initialized with type $"
-  "| is initialized with a value of a different type}1,2 resulting in a copy">,
+  "|is initialized with a value of a different type}1,2 resulting in a copy">,
   InGroup<RangeLoopConstruct>, DefaultIgnore;
 def note_use_type_or_non_reference : Note<
   "use non-reference type %0 to keep the copy or type %1 to prevent copying">;