diff options
author | Haojian Wu <hokein@google.com> | 2018-11-14 09:42:28 +0000 |
---|---|---|
committer | Haojian Wu <hokein@google.com> | 2018-11-14 09:42:28 +0000 |
commit | 01b098840f9934af90376fe1a015a9be80c067fb (patch) | |
tree | 57f84f0e7e29b4c4a2382c6612500261103ed030 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | 692f12b389d70d921d578fd6aba5eeb451e4b6ec (diff) | |
download | bcm5719-llvm-01b098840f9934af90376fe1a015a9be80c067fb.tar.gz bcm5719-llvm-01b098840f9934af90376fe1a015a9be80c067fb.zip |
Fix the "make_unique is ambiguous" compiler error.
llvm-svn: 346839
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 31968de3902..e1be28e2ca8 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -169,8 +169,8 @@ public: GetDirectory().CopyByAppendingPathComponent("gdb-remote.yaml"); std::error_code EC; - m_stream_up = make_unique<raw_fd_ostream>(history_file.GetPath(), EC, - sys::fs::OpenFlags::F_None); + m_stream_up = llvm::make_unique<raw_fd_ostream>(history_file.GetPath(), EC, + sys::fs::OpenFlags::F_None); return m_stream_up.get(); } |