diff options
author | Greg Clayton <gclayton@apple.com> | 2013-04-18 22:45:39 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-04-18 22:45:39 +0000 |
commit | 7b0992d9cd982f4e43ca1bd2c3eaf467e7600cab (patch) | |
tree | 662d44a97baffe8778f555b43203ad0257c71808 /lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp | |
parent | 9f7a221fdcaf250db64b441558647384785cde5e (diff) | |
download | bcm5719-llvm-7b0992d9cd982f4e43ca1bd2c3eaf467e7600cab.tar.gz bcm5719-llvm-7b0992d9cd982f4e43ca1bd2c3eaf467e7600cab.zip |
After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11.
llvm-svn: 179805
Diffstat (limited to 'lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp b/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp index f80e5e0967e..b92e7728f41 100644 --- a/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp +++ b/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp @@ -691,7 +691,7 @@ ProcessMonitor::ProcessMonitor(ProcessPOSIX *process, m_client_fd(-1), m_server_fd(-1) { - STD_UNIQUE_PTR(LaunchArgs) args; + std::unique_ptr<LaunchArgs> args; args.reset(new LaunchArgs(this, module, argv, envp, stdin_path, stdout_path, stderr_path, working_dir)); @@ -752,7 +752,7 @@ ProcessMonitor::ProcessMonitor(ProcessPOSIX *process, m_client_fd(-1), m_server_fd(-1) { - STD_UNIQUE_PTR(AttachArgs) args; + std::unique_ptr<AttachArgs> args; args.reset(new AttachArgs(this, pid)); |