blob: bf694fdc0ba191898724a23a27e3539d73933afe [file] [log] [blame]
Olivier Deprezf4ef2d02021-04-20 13:36:24 +02001//===- RedundantStringInitCheck.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_READABILITY_REDUNDANT_STRING_INIT_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANT_STRING_INIT_H
11
12#include "../ClangTidyCheck.h"
13#include <string>
14#include <vector>
15
16namespace clang {
17namespace tidy {
18namespace readability {
19
20/// Finds unnecessary string initializations.
21class RedundantStringInitCheck : public ClangTidyCheck {
22public:
23 RedundantStringInitCheck(StringRef Name, ClangTidyContext *Context);
24 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
25 return LangOpts.CPlusPlus;
26 }
27 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
28 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
29 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
30
31private:
32 std::vector<std::string> StringNames;
33};
34
35} // namespace readability
36} // namespace tidy
37} // namespace clang
38
39#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANT_STRING_INIT_H