After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11.
llvm-svn: 179805
This commit is contained in:
@@ -4440,7 +4440,7 @@ Process::SetSTDIOFileDescriptor (int file_descriptor)
|
||||
{
|
||||
// First set up the Read Thread for reading/handling process I/O
|
||||
|
||||
STD_UNIQUE_PTR(ConnectionFileDescriptor) conn_ap (new ConnectionFileDescriptor (file_descriptor, true));
|
||||
std::unique_ptr<ConnectionFileDescriptor> conn_ap (new ConnectionFileDescriptor (file_descriptor, true));
|
||||
|
||||
if (conn_ap.get())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user