Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit 21672b6

Browse files
committed
Fix MSVC build after 289461; MSVC isn't sure if this is std:: or llvm::
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@289480 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 3e014d0 commit 21672b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Bitcode/Reader/MetadataLoader.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1280,8 +1280,8 @@ MetadataLoader::~MetadataLoader() = default;
12801280
MetadataLoader::MetadataLoader(BitstreamCursor &Stream, Module &TheModule,
12811281
BitcodeReaderValueList &ValueList,
12821282
std::function<Type *(unsigned)> getTypeByID)
1283-
: Pimpl(make_unique<MetadataLoaderImpl>(Stream, TheModule, ValueList,
1284-
getTypeByID)) {}
1283+
: Pimpl(llvm::make_unique<MetadataLoaderImpl>(Stream, TheModule, ValueList,
1284+
getTypeByID)) {}
12851285

12861286
Error MetadataLoader::parseMetadata(bool ModuleLevel) {
12871287
return Pimpl->parseMetadata(ModuleLevel);

0 commit comments

Comments
 (0)