aboutsummaryrefslogtreecommitdiff
path: root/clang-tidy/ClangTidyModule.h
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 /clang-tidy/ClangTidyModule.h
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 'clang-tidy/ClangTidyModule.h')
-rw-r--r--clang-tidy/ClangTidyModule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tidy/ClangTidyModule.h b/clang-tidy/ClangTidyModule.h
index ac478f77..58e833c0 100644
--- a/clang-tidy/ClangTidyModule.h
+++ b/clang-tidy/ClangTidyModule.h
@@ -82,7 +82,7 @@ private:
/// them a prefixed name.
class ClangTidyModule {
public:
- virtual ~ClangTidyModule() = default;
+ virtual ~ClangTidyModule() {}
/// \brief Implement this function in order to register all \c CheckFactories
/// belonging to this module.