diff options
Diffstat (limited to 'lldb/source/Utility/Reproducer.cpp')
-rw-r--r-- | lldb/source/Utility/Reproducer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Utility/Reproducer.cpp b/lldb/source/Utility/Reproducer.cpp index 9da1723a90b..5b8480fcfec 100644 --- a/lldb/source/Utility/Reproducer.cpp +++ b/lldb/source/Utility/Reproducer.cpp @@ -152,8 +152,8 @@ void Generator::AddProviderToIndex(const ProviderInfo &provider_info) { index.AppendPathComponent("index.yaml"); std::error_code EC; - auto strm = make_unique<raw_fd_ostream>(index.GetPath(), EC, - sys::fs::OpenFlags::F_None); + auto strm = llvm::make_unique<raw_fd_ostream>(index.GetPath(), EC, + sys::fs::OpenFlags::F_None); yaml::Output yout(*strm); yout << const_cast<ProviderInfo &>(provider_info); } |