Skip to content

Commit

Permalink
clang:: to llvm::; NFC
Browse files Browse the repository at this point in the history
These interfaces are LLVM interfaces, not Clang ones; but this worked
because of LLVM.h adding the interfaces to the clang namespace.
  • Loading branch information
AaronBallman authored and vg0204 committed May 29, 2024
1 parent fb77afa commit f54bbda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clang/lib/AST/APValue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ QualType APValue::LValueBase::getType() const {
// For a materialized temporary, the type of the temporary we materialized
// may not be the type of the expression.
if (const MaterializeTemporaryExpr *MTE =
clang::dyn_cast<MaterializeTemporaryExpr>(Base)) {
llvm::dyn_cast<MaterializeTemporaryExpr>(Base)) {
SmallVector<const Expr *, 2> CommaLHSs;
SmallVector<SubobjectAdjustment, 2> Adjustments;
const Expr *Temp = MTE->getSubExpr();
Expand Down
2 changes: 1 addition & 1 deletion clang/lib/Analysis/MacroExpansionContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#define DEBUG_TYPE "macro-expansion-context"

static void dumpTokenInto(const clang::Preprocessor &PP, clang::raw_ostream &OS,
static void dumpTokenInto(const clang::Preprocessor &PP, llvm::raw_ostream &OS,
clang::Token Tok);

namespace clang {
Expand Down

0 comments on commit f54bbda

Please sign in to comment.