diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-03-05 06:21:38 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-03-05 06:21:38 +0000 |
commit | 4b02dff7aebb98d2d60b2ff4d3fc86109213128c (patch) | |
tree | 5aad388be05f04fc93dfe3140478b502013c0b53 /include | |
parent | e09b8c41d0eeb17f8cbe73affb213cb7ff8d0718 (diff) |
Add quotation marks to template names in diagnostics.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176474 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index a17719df99..44dec5a2c8 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -3126,9 +3126,9 @@ def warn_cxx98_compat_template_outside_of_template : Warning< InGroup<CXX98Compat>, DefaultIgnore; def err_non_type_template_in_nested_name_specifier : Error< - "qualified name refers into a specialization of function template '%0'">; + "qualified name refers into a specialization of function template %0">; def err_template_id_not_a_type : Error< - "template name refers to non-type template '%0'">; + "template name refers to non-type template %0">; def note_template_declared_here : Note< "%select{function template|class template|type alias template|template template parameter}0 " "%1 declared here">; |