diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-10 01:20:58 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-10 01:20:58 +0000 |
commit | 659862902cdf115c6ae2bd064e2bf9fea2525b7e (patch) | |
tree | aae94f3b1234126fff39f91d3d46c13d52627414 | |
parent | 70ba7e026011b9a94cb3fbe85bccbad74a976c5f (diff) |
Recognize and ignore -Woverloaded-virtual.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81419 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticGroups.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticGroups.td b/include/clang/Basic/DiagnosticGroups.td index ef3bb4bf54..d00ad6915f 100644 --- a/include/clang/Basic/DiagnosticGroups.td +++ b/include/clang/Basic/DiagnosticGroups.td @@ -59,6 +59,7 @@ def NonNull : DiagGroup<"nonnull">; def : DiagGroup<"nonportable-cfstrings">; def : DiagGroup<"old-style-definition">; def : DiagGroup<"overflow">; +def : DiagGroup<"overloaded-virtual">; def : DiagGroup<"packed">; def Parentheses : DiagGroup<"parentheses">; def PointerArith : DiagGroup<"pointer-arith">; |