summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticLexKinds.td
diff options
context:
space:
mode:
authorAlp Toker <alp@nuanti.com>2014-05-31 03:38:08 +0000
committerAlp Toker <alp@nuanti.com>2014-05-31 03:38:08 +0000
commit96dd0dfe842893651cdc6b377502685731183163 (patch)
treee96c75310d5bc31704e87af114f7e02e8c1f6fd5 /include/clang/Basic/DiagnosticLexKinds.td
parenta7025137ce0d1583b21c595b751a421f7bd02fcb (diff)
Preprocessor: don't exit early in CheckMacroName()
The checks below can hypothetically apply to converted operator name identifiers. In practice there are no builtin macros etc. with those names so there's no behavioural change to test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209962 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticLexKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticLexKinds.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticLexKinds.td b/include/clang/Basic/DiagnosticLexKinds.td
index cb9236b67f..2d584f1c34 100644
--- a/include/clang/Basic/DiagnosticLexKinds.td
+++ b/include/clang/Basic/DiagnosticLexKinds.td
@@ -500,7 +500,7 @@ def ext_pp_bad_paste_ms : ExtWarn<
"pasting formed '%0', an invalid preprocessing token">, DefaultError,
InGroup<DiagGroup<"invalid-token-paste">>;
def err_pp_operator_used_as_macro_name : Error<
- "C++ operator '%0' (aka %1) cannot be used as a macro name">;
+ "C++ operator %0 (aka %1) cannot be used as a macro name">;
def err_pp_illegal_floating_literal : Error<
"floating point literal in preprocessor expression">;
def err_pp_line_requires_integer : Error<