blob: abb4815967bfc23072469d96a8355ba6e9e5d569 [file] [log] [blame]
Olivier Deprezf4ef2d02021-04-20 13:36:24 +02001//===--- 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
14namespace clang {
15namespace tidy {
16namespace modernize {
17
18/// Use C++11's `override` and remove `virtual` where applicable.
19class UseOverrideCheck : public ClangTidyCheck {
20public:
21 UseOverrideCheck(StringRef Name, ClangTidyContext *Context);
22
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
30private:
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