From 6e0cbc89471c210c59cd080901b1dfe656db117f Mon Sep 17 00:00:00 2001 From: Alexander Kornienko Date: Fri, 12 Sep 2014 08:53:36 +0000 Subject: Implemented clang-tidy-check-specific options. Summary: Each check can implement readOptions and storeOptions methods to read and store custom options. Each check's options are stored in a local namespace to avoid name collisions and provide some sort of context to the user. Reviewers: bkramer, klimek Reviewed By: klimek Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D5296 llvm-svn: 217661 --- clang-tools-extra/clang-tidy/llvm/TwineLocalCheck.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'clang-tools-extra/clang-tidy/llvm/TwineLocalCheck.cpp') diff --git a/clang-tools-extra/clang-tidy/llvm/TwineLocalCheck.cpp b/clang-tools-extra/clang-tidy/llvm/TwineLocalCheck.cpp index bc255aaa35c..986c338ac22 100644 --- a/clang-tools-extra/clang-tidy/llvm/TwineLocalCheck.cpp +++ b/clang-tools-extra/clang-tidy/llvm/TwineLocalCheck.cpp @@ -17,8 +17,6 @@ using namespace clang::ast_matchers; namespace clang { namespace tidy { -TwineLocalCheck::TwineLocalCheck() {} - void TwineLocalCheck::registerMatchers(MatchFinder *Finder) { auto TwineType = qualType(hasDeclaration(recordDecl(hasName("::llvm::Twine")))); -- cgit v1.2.3