Malcolm Parsons | 5c24a11 | 2016-10-20 16:08:03 +0000 | [diff] [blame] | 1 | //===--- RedundantMemberInitCheck.h - clang-tidy----------------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
Malcolm Parsons | 5c24a11 | 2016-10-20 16:08:03 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANT_MEMBER_INIT_H |
| 10 | #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANT_MEMBER_INIT_H |
| 11 | |
Alexander Kornienko | 478fc5c | 2019-03-25 12:38:26 +0000 | [diff] [blame] | 12 | #include "../ClangTidyCheck.h" |
Malcolm Parsons | 5c24a11 | 2016-10-20 16:08:03 +0000 | [diff] [blame] | 13 | |
| 14 | namespace clang { |
| 15 | namespace tidy { |
| 16 | namespace readability { |
| 17 | |
| 18 | /// Finds member initializations that are unnecessary because the same default |
| 19 | /// constructor would be called if they were not present. |
| 20 | /// |
| 21 | /// For the user-facing documentation see: |
| 22 | /// http://clang.llvm.org/extra/clang-tidy/checks/readability-redundant-member-init.html |
| 23 | class RedundantMemberInitCheck : public ClangTidyCheck { |
| 24 | public: |
| 25 | RedundantMemberInitCheck(StringRef Name, ClangTidyContext *Context) |
Mitchell Balan | 9806536 | 2019-11-19 10:57:16 -0500 | [diff] [blame] | 26 | : ClangTidyCheck(Name, Context), |
| 27 | IgnoreBaseInCopyConstructors( |
Nathan James | 672207c | 2020-04-09 22:47:09 +0100 | [diff] [blame] | 28 | Options.get("IgnoreBaseInCopyConstructors", false)) {} |
Nathan James | e40a742 | 2020-03-03 16:39:32 +0000 | [diff] [blame] | 29 | bool isLanguageVersionSupported(const LangOptions &LangOpts) const override { |
| 30 | return LangOpts.CPlusPlus; |
| 31 | } |
Mitchell Balan | 9806536 | 2019-11-19 10:57:16 -0500 | [diff] [blame] | 32 | void storeOptions(ClangTidyOptions::OptionMap &Opts) override; |
Malcolm Parsons | 5c24a11 | 2016-10-20 16:08:03 +0000 | [diff] [blame] | 33 | void registerMatchers(ast_matchers::MatchFinder *Finder) override; |
| 34 | void check(const ast_matchers::MatchFinder::MatchResult &Result) override; |
Mitchell Balan | 9806536 | 2019-11-19 10:57:16 -0500 | [diff] [blame] | 35 | |
| 36 | private: |
| 37 | bool IgnoreBaseInCopyConstructors; |
Malcolm Parsons | 5c24a11 | 2016-10-20 16:08:03 +0000 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | } // namespace readability |
| 41 | } // namespace tidy |
| 42 | } // namespace clang |
| 43 | |
| 44 | #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANT_MEMBER_INIT_H |