clang-tools 23.0.0git
RedundantMemberInitCheck.h
Go to the documentation of this file.
1//===----------------------------------------------------------------------===//
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_READABILITY_REDUNDANTMEMBERINITCHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANTMEMBERINITCHECK_H
11
12#include "../ClangTidyCheck.h"
13
15
16/// Finds member initializations that are unnecessary because the same default
17/// constructor would be called if they were not present.
18///
19/// For the user-facing documentation see:
20/// https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-member-init.html
22public:
24 : ClangTidyCheck(Name, Context),
25 IgnoreBaseInCopyConstructors(
26 Options.get("IgnoreBaseInCopyConstructors", false)),
27 IgnoreMacros(Options.getLocalOrGlobal("IgnoreMacros", false)) {}
28 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
29 return LangOpts.CPlusPlus;
30 }
31 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
32 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
33 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
34 std::optional<TraversalKind> getCheckTraversalKind() const override {
35 return TK_IgnoreUnlessSpelledInSource;
36 }
37
38private:
39 bool IgnoreBaseInCopyConstructors;
40 bool IgnoreMacros;
41};
42
43} // namespace clang::tidy::readability
44
45#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANTMEMBERINITCHECK_H
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
bool isLanguageVersionSupported(const LangOptions &LangOpts) const override
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
RedundantMemberInitCheck(StringRef Name, ClangTidyContext *Context)
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
std::optional< TraversalKind > getCheckTraversalKind() const override
void registerMatchers(ast_matchers::MatchFinder *Finder) override
llvm::StringMap< ClangTidyValue > OptionMap