diff options
| author | Alexis Hunt <alercah@gmail.com> | 2011-05-06 21:15:01 +0000 |
|---|---|---|
| committer | Alexis Hunt <alercah@gmail.com> | 2011-05-06 21:15:01 +0000 |
| commit | e2e4fe0d323bfac7046e33f509f594275851d7b3 (patch) | |
| tree | da87e727fc885d2e417b6491ea4b4749c7d89768 /clang | |
| parent | 64c92844118f740cb08749f7ca3e0a8f2ef99c85 (diff) | |
| download | bcm5719-llvm-e2e4fe0d323bfac7046e33f509f594275851d7b3.tar.gz bcm5719-llvm-e2e4fe0d323bfac7046e33f509f594275851d7b3.zip | |
Fix diagnostics to start with a lower case letter
llvm-svn: 131017
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/include/clang/Basic/DiagnosticCommonKinds.td | 4 | ||||
| -rw-r--r-- | clang/include/clang/Basic/DiagnosticSemaKinds.td | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/Basic/DiagnosticCommonKinds.td b/clang/include/clang/Basic/DiagnosticCommonKinds.td index 166f81a5ffe..4383555c11e 100644 --- a/clang/include/clang/Basic/DiagnosticCommonKinds.td +++ b/clang/include/clang/Basic/DiagnosticCommonKinds.td @@ -53,9 +53,9 @@ def err_expected_namespace_name : Error<"expected namespace name">; def ext_variadic_templates : ExtWarn< "variadic templates are a C++0x extension">, InGroup<CXX0x>; def err_default_special_members : Error< - "Only special member functions may be defaulted">; + "only special member functions may be defaulted">; def err_friends_define_only_namespace_scope : Error< - "Cannot define a function with non-namespace scope in a friend declaration">; + "cannot define a function with non-namespace scope in a friend declaration">; // Sema && Lex def ext_longlong : Extension< diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td index 6d90ba17c61..29728d5d2e3 100644 --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -1415,7 +1415,7 @@ def err_ovl_ambiguous_call : Error< def err_ovl_deleted_call : Error< "call to %select{unavailable|deleted}0 function %1%2">; def err_ovl_ambiguous_member_call : Error< - "call to member function %0 is ambiguous">; + "call member function %0 is ambiguous">; def err_ovl_deleted_member_call : Error< "call to %select{unavailable|deleted}0 member function %1%2">; def note_ovl_too_many_candidates : Note< |

