diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-11-03 17:52:57 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-11-03 17:52:57 +0000 |
commit | 9fa8e569407e02148888136609431a3fe083096d (patch) | |
tree | c099b92438f8a27e24f13c55e93738770d453f4f /include/clang | |
parent | fec56e7e341cd1d9a861d64bffc80a97aed89802 (diff) |
Make this error less specific but also less likely to cause confusion. Fixes
PR7702.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@118181 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Basic/DiagnosticParseKinds.td | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/clang/Basic/DiagnosticParseKinds.td b/include/clang/Basic/DiagnosticParseKinds.td index 273abe1183..93f5bbcba8 100644 --- a/include/clang/Basic/DiagnosticParseKinds.td +++ b/include/clang/Basic/DiagnosticParseKinds.td @@ -293,8 +293,6 @@ def err_default_arg_unparsed : Error< def err_dup_virtual : Error<"duplicate 'virtual' in base specifier">; // C++ operator overloading -def err_operator_missing_type_specifier : Error< - "missing type specifier after 'operator'">; def err_operator_string_not_empty : Error< "string literal after 'operator' must be '\"\"'">; |