brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 781a8d7 Raw
37 lines · c
1//=======- DiagOutputUtils.h -------------------------------------*- 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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_CLANG_ANALYZER_WEBKIT_DIAGPRINTUTILS_H10#define LLVM_CLANG_ANALYZER_WEBKIT_DIAGPRINTUTILS_H11 12#include "clang/AST/Decl.h"13#include "llvm/Support/raw_ostream.h"14 15namespace clang {16 17template <typename NamedDeclDerivedT>18void printQuotedQualifiedName(llvm::raw_ostream &Os,19                              const NamedDeclDerivedT &D) {20  Os << "'";21  D->getNameForDiagnostic(Os, D->getASTContext().getPrintingPolicy(),22                          /*Qualified=*/true);23  Os << "'";24}25 26template <typename NamedDeclDerivedT>27void printQuotedName(llvm::raw_ostream &Os, const NamedDeclDerivedT &D) {28  Os << "'";29  D->getNameForDiagnostic(Os, D->getASTContext().getPrintingPolicy(),30                          /*Qualified=*/false);31  Os << "'";32}33 34} // namespace clang35 36#endif37