Skip to content

Commit 273777e

Browse files
committed
clang:: to llvm::; NFC
These interfaces are LLVM interfaces, not Clang ones; but this worked because of LLVM.h adding the interfaces to the clang namespace.
1 parent fea7399 commit 273777e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang/lib/AST/APValue.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ QualType APValue::LValueBase::getType() const {
9090
// For a materialized temporary, the type of the temporary we materialized
9191
// may not be the type of the expression.
9292
if (const MaterializeTemporaryExpr *MTE =
93-
clang::dyn_cast<MaterializeTemporaryExpr>(Base)) {
93+
llvm::dyn_cast<MaterializeTemporaryExpr>(Base)) {
9494
SmallVector<const Expr *, 2> CommaLHSs;
9595
SmallVector<SubobjectAdjustment, 2> Adjustments;
9696
const Expr *Temp = MTE->getSubExpr();

clang/lib/Analysis/MacroExpansionContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#define DEBUG_TYPE "macro-expansion-context"
1414

15-
static void dumpTokenInto(const clang::Preprocessor &PP, clang::raw_ostream &OS,
15+
static void dumpTokenInto(const clang::Preprocessor &PP, llvm::raw_ostream &OS,
1616
clang::Token Tok);
1717

1818
namespace clang {

0 commit comments

Comments
 (0)