1 //===--- UseOverrideCheck.h - clang-tidy ------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USEOVERRIDECHECK_H 10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USEOVERRIDECHECK_H 11 12 #include "../ClangTidyCheck.h" 13 14 namespace clang { 15 namespace tidy { 16 namespace modernize { 17 18 /// Use C++11's `override` and remove `virtual` where applicable. 19 class UseOverrideCheck : public ClangTidyCheck { 20 public: 21 UseOverrideCheck(StringRef Name, ClangTidyContext *Context); 22 isLanguageVersionSupported(const LangOptions & LangOpts)23 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override { 24 return LangOpts.CPlusPlus11; 25 } 26 void registerMatchers(ast_matchers::MatchFinder *Finder) override; 27 void check(const ast_matchers::MatchFinder::MatchResult &Result) override; 28 void storeOptions(ClangTidyOptions::OptionMap &Opts) override; 29 30 private: 31 const bool IgnoreDestructors; 32 const bool AllowOverrideAndFinal; 33 const std::string OverrideSpelling; 34 const std::string FinalSpelling; 35 }; 36 37 } // namespace modernize 38 } // namespace tidy 39 } // namespace clang 40 41 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USEOVERRIDECHECK_H 42