summaryrefslogtreecommitdiffstats
path: root/pp-trace
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-10-20 21:45:52 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-10-20 21:45:52 +0000
commit1ec3c0fcf836626aa67ed7a619994dd29b12c166 (patch)
treeb7305ee77361fcf7b9993e300dd87c04bba4e9d6 /pp-trace
parentdec2fa63a95c13b6177006fed249d0bddc98473e (diff)
Revert "Apply modernize-use-default to clang-tools-extra."
Breaks the build in GCC 4.7.2 (see http://lab.llvm.org:8011/builders/perf-x86_64-penryn-O3 for example) This reverts commit r250824. git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@250862 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'pp-trace')
-rw-r--r--pp-trace/PPCallbacksTracker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp-trace/PPCallbacksTracker.cpp b/pp-trace/PPCallbacksTracker.cpp
index caa819ee..e0d23dd8 100644
--- a/pp-trace/PPCallbacksTracker.cpp
+++ b/pp-trace/PPCallbacksTracker.cpp
@@ -96,7 +96,7 @@ PPCallbacksTracker::PPCallbacksTracker(llvm::SmallSet<std::string, 4> &Ignore,
clang::Preprocessor &PP)
: CallbackCalls(CallbackCalls), Ignore(Ignore), PP(PP) {}
-PPCallbacksTracker::~PPCallbacksTracker() = default;
+PPCallbacksTracker::~PPCallbacksTracker() {}
// Callback functions.