diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-05-09 18:31:50 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-05-09 18:31:50 +0000 |
commit | 025983a8dd27fd5ff1defa11ebcd88ecd7248773 (patch) | |
tree | 5a477b478c77dee6480954f845b6741bfc676761 /lib/Tooling | |
parent | 78e63f1fdd8a0ea0fa05425bbf729a87ccb302ce (diff) |
Fix -Wdelete-non-virtual-dtor in Tooling code.
Also, add an anchor as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156495 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Tooling')
-rw-r--r-- | lib/Tooling/ArgumentsAdjusters.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Tooling/ArgumentsAdjusters.cpp b/lib/Tooling/ArgumentsAdjusters.cpp index 73ad39816b..31dd465995 100644 --- a/lib/Tooling/ArgumentsAdjusters.cpp +++ b/lib/Tooling/ArgumentsAdjusters.cpp @@ -17,6 +17,9 @@ namespace clang { namespace tooling { +void ArgumentsAdjuster::anchor() { +} + /// Add -fsyntax-only option to the commnand line arguments. CommandLineArguments ClangSyntaxOnlyAdjuster::Adjust(const CommandLineArguments &Args) { |