aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2011-07-23 00:36:52 +0000
committerAnna Zaks <ganna@apple.com>2011-07-23 00:36:52 +0000
commit46f72725b85649f284ab4ebfbb1883cd727538c1 (patch)
tree2850615c46e2f9b5beadba51b33b8ed61247d9f2
parent8cc4fd795e01d50a7a7c96f4c0356d23b00d9349 (diff)
Add ext_backslash_newline_eof to Wnewline-eof group.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135830 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/DiagnosticLexKinds.td3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticLexKinds.td b/include/clang/Basic/DiagnosticLexKinds.td
index b93912213a..d260d3158c 100644
--- a/include/clang/Basic/DiagnosticLexKinds.td
+++ b/include/clang/Basic/DiagnosticLexKinds.td
@@ -40,7 +40,8 @@ def ext_bcpl_comment : Extension<
InGroup<Comment>;
def ext_no_newline_eof : Extension<"no newline at end of file">,
InGroup<DiagGroup<"newline-eof">>;
-def ext_backslash_newline_eof : Extension<"backslash-newline at end of file">;
+def ext_backslash_newline_eof : Extension<"backslash-newline at end of file">,
+ InGroup<DiagGroup<"newline-eof">>;
def ext_dollar_in_identifier : Extension<"'$' in identifier">;
def charize_microsoft_ext : Extension<"@# is a microsoft extension">;