r233982 - Add a question mark to the end of an interrogatory warning.
Eric Christopher
echristo at gmail.com
Thu Apr 2 15:30:23 PDT 2015
Author: echristo
Date: Thu Apr 2 17:30:23 2015
New Revision: 233982
URL: http://llvm.org/viewvc/llvm-project?rev=233982&view=rev
Log:
Add a question mark to the end of an interrogatory warning.
Modified:
cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=233982&r1=233981&r2=233982&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Thu Apr 2 17:30:23 2015
@@ -1553,7 +1553,7 @@ def warn_uninit_byref_blockvar_captured_
"block pointer variable %0 is uninitialized when captured by block">,
InGroup<Uninitialized>, DefaultIgnore;
def note_block_var_fixit_add_initialization : Note<
- "did you mean to use __block %0">;
+ "did you mean to use __block %0?">;
def note_in_omitted_aggregate_initializer : Note<
"in implicit initialization of %select{array element %1|field %1}0 "
"with omitted initializer">;
More information about the cfe-commits
mailing list