#include "MacroParenthesesCheck.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Lex/PPCallbacks.h"
#include "clang/Lex/Preprocessor.h"
namespace clang::tidy::bugprone {
namespace {
class MacroParenthesesPPCallbacks : public PPCallbacks { … };
}
static bool isSurroundedLeft(const Token &T) { … }
static bool isSurroundedRight(const Token &T) { … }
static bool isKeyword(const Token &T) { … }
static bool isWarnOp(const Token &T) { … }
static bool isVarDeclKeyword(const Token &T) { … }
static bool possibleVarDecl(const MacroInfo *MI, const Token *Tok) { … }
void MacroParenthesesPPCallbacks::replacementList(const Token &MacroNameTok,
const MacroInfo *MI) { … }
void MacroParenthesesPPCallbacks::argument(const Token &MacroNameTok,
const MacroInfo *MI) { … }
void MacroParenthesesCheck::registerPPCallbacks(
const SourceManager &SM, Preprocessor *PP, Preprocessor *ModuleExpanderPP) { … }
}