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

Commit 39107fc

Browse files
committed
Try to fix the windows build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@318535 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent ebc0ffe commit 39107fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/dsymutil/dsymutil.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,12 +342,12 @@ int main(int argc, char **argv) {
342342
errs() << toString(T.takeError());
343343
return 1;
344344
}
345-
OS = make_unique<raw_fd_ostream>(T->FD, /*shouldClose*/ false);
345+
OS = llvm::make_unique<raw_fd_ostream>(T->FD, /*shouldClose*/ false);
346346
OutputFile = T->TmpName;
347347
TempFileStore.Files.push_back(std::move(*T));
348348
} else {
349349
std::error_code EC;
350-
OS = make_unique<raw_fd_ostream>(NoOutput ? "-" : OutputFile, EC,
350+
OS = llvm::make_unique<raw_fd_ostream>(NoOutput ? "-" : OutputFile, EC,
351351
sys::fs::F_None);
352352
if (EC) {
353353
errs() << OutputFile << ": " << EC.message();

0 commit comments

Comments
 (0)