From: Eric Christopher Date: Thu, 2 Apr 2015 22:30:23 +0000 (+0000) Subject: Add a question mark to the end of an interrogatory warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13add0293a01057c2a028aa369b7d71623a96ba7;p=clang Add a question mark to the end of an interrogatory warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@233982 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index 5cf6a4413b..bf0a4608e9 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -1553,7 +1553,7 @@ def warn_uninit_byref_blockvar_captured_by_block : Warning< "block pointer variable %0 is uninitialized when captured by block">, InGroup, 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">;