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/unittests/clang-tidy/LLVMModuleTest.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp') diff --git a/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp b/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp index 0d43cc933f6..67b3d67de98 100644 --- a/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp +++ b/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp @@ -95,6 +95,8 @@ static std::string runHeaderGuardCheck(StringRef Code, const Twine &Filename) { namespace { struct WithEndifComment : public LLVMHeaderGuardCheck { + WithEndifComment(StringRef Name, ClangTidyContext *Context) + : LLVMHeaderGuardCheck(Name, Context) {} bool shouldSuggestEndifComment(StringRef Filename) override { return true; } }; } // namespace -- cgit v1.2.3