summaryrefslogtreecommitdiffstats
path: root/clang/AST/Builtins.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/AST/Builtins.cpp')
-rw-r--r--clang/AST/Builtins.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/AST/Builtins.cpp b/clang/AST/Builtins.cpp
index af505620662..454085bf2a5 100644
--- a/clang/AST/Builtins.cpp
+++ b/clang/AST/Builtins.cpp
@@ -15,7 +15,6 @@
#include "clang/AST/ASTContext.h"
#include "clang/Lex/IdentifierTable.h"
#include "clang/Basic/TargetInfo.h"
-using namespace llvm;
using namespace clang;
static const Builtin::Info BuiltinInfo[] = {
@@ -112,7 +111,7 @@ static QualType DecodeTypeFromStr(const char *&Str, ASTContext &Context) {
QualType Builtin::Context::GetBuiltinType(unsigned id, ASTContext &Context)const{
const char *TypeStr = GetRecord(id).Type;
- SmallVector<QualType, 8> ArgTypes;
+ llvm::SmallVector<QualType, 8> ArgTypes;
QualType ResType = DecodeTypeFromStr(TypeStr, Context);
while (TypeStr[0] && TypeStr[0] != '.')
OpenPOWER on IntegriCloud