10 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_RAW_STRING_LITERAL_H 11 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_RAW_STRING_LITERAL_H 13 #include "../ClangTidy.h" 33 void check(
const ast_matchers::MatchFinder::MatchResult &Result)
override;
36 void replaceWithRawStringLiteral(
37 const ast_matchers::MatchFinder::MatchResult &Result,
38 const StringLiteral *Literal, StringRef Replacement);
40 std::string DelimiterStem;
42 const bool ReplaceShorterLiterals;
49 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_RAW_STRING_LITERAL_H
This check replaces string literals with escaped characters to raw string literals.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
Base class for all clang-tidy checks.
std::bitset< 1<< CHAR_BIT > CharsBitSet
std::map< std::string, std::string > OptionMap
RawStringLiteralCheck(StringRef Name, ClangTidyContext *Context)
void storeOptions(ClangTidyOptions::OptionMap &Options) override
Should store all options supported by this check with their current values or default values for opti...
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.