summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticCommonKinds.td
diff options
context:
space:
mode:
authorSean Hunt <scshunt@csclub.uwaterloo.ca>2011-05-06 21:15:01 +0000
committerSean Hunt <scshunt@csclub.uwaterloo.ca>2011-05-06 21:15:01 +0000
commit26dc3e08da33594bb2fe5466ce48b4544a626cf0 (patch)
tree3b6cd7cb3ad1d78247de657b564802a5289b9513 /include/clang/Basic/DiagnosticCommonKinds.td
parent1e862693c63067ae467b0b3884c44f753cd6e821 (diff)
Fix diagnostics to start with a lower case letter
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131017 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticCommonKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticCommonKinds.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Basic/DiagnosticCommonKinds.td b/include/clang/Basic/DiagnosticCommonKinds.td
index 166f81a5ff..4383555c11 100644
--- a/include/clang/Basic/DiagnosticCommonKinds.td
+++ b/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<