blob: fc26eb55c83aee592d08d9e15e381395e875ff0d [file] [log] [blame]
Olivier Deprezf4ef2d02021-04-20 13:36:24 +02001//===--- UseDefaultMemberInitCheck.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_USE_DEFAULT_MEMBER_INIT_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USE_DEFAULT_MEMBER_INIT_H
11
12#include "../ClangTidyCheck.h"
13
14namespace clang {
15namespace tidy {
16namespace modernize {
17
18/// Convert a default constructor's member initializers into default member
19/// initializers. Remove member initializers that are the same as a default
20/// member initializer.
21///
22/// For the user-facing documentation see:
23/// http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-default-member-init.html
24class UseDefaultMemberInitCheck : public ClangTidyCheck {
25public:
26 UseDefaultMemberInitCheck(StringRef Name, ClangTidyContext *Context);
27 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
28 return LangOpts.CPlusPlus11;
29 }
30 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
31 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
32 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
33
34private:
35 void checkDefaultInit(const ast_matchers::MatchFinder::MatchResult &Result,
36 const CXXCtorInitializer *Init);
37 void checkExistingInit(const ast_matchers::MatchFinder::MatchResult &Result,
38 const CXXCtorInitializer *Init);
39
40 const bool UseAssignment;
41 const bool IgnoreMacros;
42};
43
44} // namespace modernize
45} // namespace tidy
46} // namespace clang
47
48#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USE_DEFAULT_MEMBER_INIT_H