clang-tools
15.0.0git
llvm-project
clang-tools-extra
clang-tidy
readability
RedundantStringCStrCheck.h
Go to the documentation of this file.
1
//===--- RedundantStringCStrCheck.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_REDUNDANTSTRINGCSTRCHECK_H
10
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANTSTRINGCSTRCHECK_H
11
12
#include "../ClangTidyCheck.h"
13
14
namespace
clang
{
15
namespace
tidy {
16
namespace
readability {
17
18
/// Finds unnecessary calls to `std::string::c_str()`.
19
class
RedundantStringCStrCheck
:
public
ClangTidyCheck
{
20
public
:
21
RedundantStringCStrCheck
(StringRef
Name
,
ClangTidyContext
*Context)
22
:
ClangTidyCheck
(
Name
, Context) {}
23
bool
isLanguageVersionSupported
(
const
LangOptions &
LangOpts
)
const override
{
24
return
LangOpts
.CPlusPlus;
25
}
26
void
registerMatchers
(ast_matchers::MatchFinder *Finder)
override
;
27
void
check
(
const
ast_matchers::MatchFinder::MatchResult &Result)
override
;
28
};
29
30
}
// namespace readability
31
}
// namespace tidy
32
}
// namespace clang
33
34
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_REDUNDANTSTRINGCSTRCHECK_H
clang::tidy::readability::RedundantStringCStrCheck
Finds unnecessary calls to std::string::c_str().
Definition:
RedundantStringCStrCheck.h:19
clang::tidy::readability::RedundantStringCStrCheck::registerMatchers
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
Definition:
RedundantStringCStrCheck.cpp:70
clang::tidy::ClangTidyCheck
Base class for all clang-tidy checks.
Definition:
ClangTidyCheck.h:53
clang::tidy::ClangTidyContext
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Definition:
ClangTidyDiagnosticConsumer.h:67
clang::tidy::readability::RedundantStringCStrCheck::RedundantStringCStrCheck
RedundantStringCStrCheck(StringRef Name, ClangTidyContext *Context)
Definition:
RedundantStringCStrCheck.h:21
Name
Token Name
Definition:
MacroToEnumCheck.cpp:89
clang::tidy::readability::RedundantStringCStrCheck::isLanguageVersionSupported
bool isLanguageVersionSupported(const LangOptions &LangOpts) const override
Override this to disable registering matchers and PP callbacks if an invalid language version is bein...
Definition:
RedundantStringCStrCheck.h:23
clang
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Definition:
ApplyReplacements.h:27
LangOpts
const LangOptions * LangOpts
Definition:
ExtractFunction.cpp:366
clang::tidy::readability::RedundantStringCStrCheck::check
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
Definition:
RedundantStringCStrCheck.cpp:179
Generated on Sun Jun 26 2022 13:27:16 for clang-tools by
1.8.17