summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticCommonKinds.td
diff options
context:
space:
mode:
authorSean Hunt <scshunt@csclub.uwaterloo.ca>2011-05-06 00:11:07 +0000
committerSean Hunt <scshunt@csclub.uwaterloo.ca>2011-05-06 00:11:07 +0000
commit5f802e51406664ca9b6e0d57fc7ce37ea97a1c65 (patch)
tree092c543a1a637a13e3b418206e5d8622eb91deaa /include/clang/Basic/DiagnosticCommonKinds.td
parent536e9c1f103f3e59ed47e35090819eb93596c35b (diff)
Revert r130912 in order to approach defaulted functions from the other
direction and not introduce things in the wrong place three different times. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130968 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticCommonKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticCommonKinds.td4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/clang/Basic/DiagnosticCommonKinds.td b/include/clang/Basic/DiagnosticCommonKinds.td
index 166f81a5ff..0b0bca0395 100644
--- a/include/clang/Basic/DiagnosticCommonKinds.td
+++ b/include/clang/Basic/DiagnosticCommonKinds.td
@@ -52,10 +52,6 @@ def err_invalid_storage_class_in_func_decl : Error<
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">;
-def err_friends_define_only_namespace_scope : Error<
- "Cannot define a function with non-namespace scope in a friend declaration">;
// Sema && Lex
def ext_longlong : Extension<