forked from OSchip/llvm-project
Fix diagnostics to start with a lower case letter
llvm-svn: 131017
This commit is contained in:
parent
64c9284411
commit
e2e4fe0d32
clang/include/clang/Basic
|
@ -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<
|
||||
|
|
|
@ -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<
|
||||
|
|
Loading…
Reference in New Issue