[cfe-commits] r131017 - in /cfe/trunk/include/clang/Basic: DiagnosticCommonKinds.td DiagnosticSemaKinds.td
Sean Hunt
scshunt at csclub.uwaterloo.ca
Fri May 6 14:15:01 PDT 2011
Author: coppro
Date: Fri May 6 16:15:01 2011
New Revision: 131017
URL: http://llvm.org/viewvc/llvm-project?rev=131017&view=rev
Log:
Fix diagnostics to start with a lower case letter
Modified:
cfe/trunk/include/clang/Basic/DiagnosticCommonKinds.td
cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
Modified: cfe/trunk/include/clang/Basic/DiagnosticCommonKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticCommonKinds.td?rev=131017&r1=131016&r2=131017&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticCommonKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticCommonKinds.td Fri May 6 16:15:01 2011
@@ -53,9 +53,9 @@
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<
Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=131017&r1=131016&r2=131017&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Fri May 6 16:15:01 2011
@@ -1415,7 +1415,7 @@
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<
More information about the cfe-commits
mailing list