//===--- FixItHintUtils.h - clang-tidy---------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_UTILS_FIXITHINTUTILS_H #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_UTILS_FIXITHINTUTILS_H #include "clang/AST/ASTContext.h" #include "clang/AST/Decl.h" #include "clang/Sema/DeclSpec.h" #include <optional> namespace clang::tidy::utils::fixit { /// Creates fix to make ``VarDecl`` a reference by adding ``&``. FixItHint changeVarDeclToReference(const VarDecl &Var, ASTContext &Context); /// This enum defines where the qualifier shall be preferably added. enum class QualifierPolicy { … }; /// This enum defines which entity is the target for adding the qualifier. This /// makes only a difference for pointer-types. Other types behave identical /// for either value of \c ConstTarget. enum class QualifierTarget { … }; /// \brief Creates fix to qualify ``VarDecl`` with the specified \c Qualifier. /// Requires that `Var` is isolated in written code like in `int foo = 42;`. std::optional<FixItHint> addQualifierToVarDecl(const VarDecl &Var, const ASTContext &Context, DeclSpec::TQ Qualifier, QualifierTarget QualTarget = QualifierTarget::Pointee, QualifierPolicy QualPolicy = QualifierPolicy::Left); // \brief Format a pointer to an expression std::string formatDereference(const Expr &ExprNode, const ASTContext &Context); // \brief Checks whatever a expression require extra () to be always used in // safe way in any other expression. bool areParensNeededForStatement(const Stmt &Node); } // namespace clang::tidy::utils::fixit #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_UTILS_FIXITHINTUTILS_H