]> granicus.if.org Git - clang/commitdiff
Fix diagnostics to start with a lower case letter
authorSean Hunt <scshunt@csclub.uwaterloo.ca>
Fri, 6 May 2011 21:15:01 +0000 (21:15 +0000)
committerSean Hunt <scshunt@csclub.uwaterloo.ca>
Fri, 6 May 2011 21:15:01 +0000 (21:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131017 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticCommonKinds.td
include/clang/Basic/DiagnosticSemaKinds.td

index 166f81a5ffe111d9482165a16022d04078c78ccd..4383555c11e78db52a9368715b9d3857b9d51f3a 100644 (file)
@@ -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<
index 6d90ba17c615a807edfc6b8534792ca6e0ca8a85..29728d5d2e379cafca4d13de089cb61bc3b3155c 100644 (file)
@@ -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<