diff options
Diffstat (limited to 'llvm/unittests/Support/Host.cpp')
-rw-r--r-- | llvm/unittests/Support/Host.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/Host.cpp b/llvm/unittests/Support/Host.cpp index ec9dd951a9f..4562d933df7 100644 --- a/llvm/unittests/Support/Host.cpp +++ b/llvm/unittests/Support/Host.cpp @@ -273,7 +273,7 @@ static bool runAndGetCommandOutput( Size = ::lseek(FD, 0, SEEK_END); ASSERT_NE(-1, Size); ::lseek(FD, 0, SEEK_SET); - Buffer = llvm::make_unique<char[]>(Size); + Buffer = std::make_unique<char[]>(Size); ASSERT_EQ(::read(FD, Buffer.get(), Size), Size); ::close(FD); |