blob: 9454278ca244dd1487ea193f1dcefcc830346ddf [file] [log] [blame]
Malcolm Parsons5c24a112016-10-20 16:08:03 +00001//===--- RedundantMemberInitCheck.h - clang-tidy----------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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 Parsons5c24a112016-10-20 16:08:03 +00006//
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 Kornienko478fc5c2019-03-25 12:38:26 +000012#include "../ClangTidyCheck.h"
Malcolm Parsons5c24a112016-10-20 16:08:03 +000013
14namespace clang {
15namespace tidy {
16namespace 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
23class RedundantMemberInitCheck : public ClangTidyCheck {
24public:
25 RedundantMemberInitCheck(StringRef Name, ClangTidyContext *Context)
Mitchell Balan98065362019-11-19 10:57:16 -050026 : ClangTidyCheck(Name, Context),
27 IgnoreBaseInCopyConstructors(
Nathan James672207c2020-04-09 22:47:09 +010028 Options.get("IgnoreBaseInCopyConstructors", false)) {}
Nathan Jamese40a7422020-03-03 16:39:32 +000029 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
30 return LangOpts.CPlusPlus;
31 }
Mitchell Balan98065362019-11-19 10:57:16 -050032 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
Malcolm Parsons5c24a112016-10-20 16:08:03 +000033 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
34 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
Mitchell Balan98065362019-11-19 10:57:16 -050035
36private:
37 bool IgnoreBaseInCopyConstructors;
Malcolm Parsons5c24a112016-10-20 16:08:03 +000038};
39
40} // namespace readability
41} // namespace tidy
42} // namespace clang
43
44#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANT_MEMBER_INIT_H