forked from OSchip/llvm-project
Fix MSVC build after 289461; MSVC isn't sure if this is std:: or llvm::
llvm-svn: 289480
This commit is contained in:
parent
4e62292b11
commit
b3901bdde8
|
@ -1280,8 +1280,8 @@ MetadataLoader::~MetadataLoader() = default;
|
||||||
MetadataLoader::MetadataLoader(BitstreamCursor &Stream, Module &TheModule,
|
MetadataLoader::MetadataLoader(BitstreamCursor &Stream, Module &TheModule,
|
||||||
BitcodeReaderValueList &ValueList,
|
BitcodeReaderValueList &ValueList,
|
||||||
std::function<Type *(unsigned)> getTypeByID)
|
std::function<Type *(unsigned)> getTypeByID)
|
||||||
: Pimpl(make_unique<MetadataLoaderImpl>(Stream, TheModule, ValueList,
|
: Pimpl(llvm::make_unique<MetadataLoaderImpl>(Stream, TheModule, ValueList,
|
||||||
getTypeByID)) {}
|
getTypeByID)) {}
|
||||||
|
|
||||||
Error MetadataLoader::parseMetadata(bool ModuleLevel) {
|
Error MetadataLoader::parseMetadata(bool ModuleLevel) {
|
||||||
return Pimpl->parseMetadata(ModuleLevel);
|
return Pimpl->parseMetadata(ModuleLevel);
|
||||||
|
|
Loading…
Reference in New Issue