diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-08-15 10:17:39 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-08-15 10:17:39 +0000 |
commit | c83d2d7d8914a0fe00d679a262f2bdae7689f16d (patch) | |
tree | 26065c169c55737f6a2956dc383431ba5b8a2ce3 /lib/Frontend/VerifyDiagnosticsClient.cpp | |
parent | 06999f8ff61de3c63a52871bd7ac61e7ada9180b (diff) |
Remove ATTRIBUTE_UNUSED from the common pattern of disallowing copying.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111101 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/VerifyDiagnosticsClient.cpp')
-rw-r--r-- | lib/Frontend/VerifyDiagnosticsClient.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Frontend/VerifyDiagnosticsClient.cpp b/lib/Frontend/VerifyDiagnosticsClient.cpp index f2a2606317..ae36481444 100644 --- a/lib/Frontend/VerifyDiagnosticsClient.cpp +++ b/lib/Frontend/VerifyDiagnosticsClient.cpp @@ -18,7 +18,6 @@ #include "llvm/ADT/SmallString.h" #include "llvm/Support/Regex.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Support/Compiler.h" using namespace clang; VerifyDiagnosticsClient::VerifyDiagnosticsClient(Diagnostic &_Diags, @@ -101,8 +100,8 @@ protected: : Location(Location), Text(Text), Count(Count) { } private: - Directive(const Directive&) ATTRIBUTE_UNUSED; // DO NOT IMPLEMENT - void operator=(const Directive&) ATTRIBUTE_UNUSED; // DO NOT IMPLEMENT + Directive(const Directive&); // DO NOT IMPLEMENT + void operator=(const Directive&); // DO NOT IMPLEMENT }; /// StandardDirective - Directive with string matching. |