forked from OSchip/llvm-project
Clean out some minor cruft in the AST reader; no functionality change.
llvm-svn: 138188
This commit is contained in:
parent
ab443b9da5
commit
18221d8eae
|
@ -49,7 +49,6 @@
|
|||
#include <iterator>
|
||||
#include <cstdio>
|
||||
#include <sys/stat.h>
|
||||
#include <queue>
|
||||
|
||||
using namespace clang;
|
||||
using namespace clang::serialization;
|
||||
|
@ -4611,7 +4610,6 @@ namespace {
|
|||
}
|
||||
|
||||
IdentifierInfo* ASTReader::get(const char *NameStart, const char *NameEnd) {
|
||||
std::string Name(NameStart, NameEnd);
|
||||
IdentifierLookupVisitor Visitor(StringRef(NameStart, NameEnd - NameStart));
|
||||
ModuleMgr.visit(IdentifierLookupVisitor::visit, &Visitor);
|
||||
return Visitor.getIdentifierInfo();
|
||||
|
|
Loading…
Reference in New Issue