diff options
author | Justin Berger <j.david.berger@gmail.com> | 2017-07-23 12:31:13 -0600 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-11-29 16:36:31 -0500 |
commit | 1e9b7d3ceb882d3feb59324b6e55d40cc795576b (patch) | |
tree | f1b9dbb8189f8b26ca99cc6ce91e76ccfab44009 /Source/cmPipeConnection.h | |
parent | f43b9219c738944fea33043b1985696c862c84ac (diff) | |
download | cmake-1e9b7d3ceb882d3feb59324b6e55d40cc795576b.tar.gz |
server: Switched to a auto model for handles
Diffstat (limited to 'Source/cmPipeConnection.h')
-rw-r--r-- | Source/cmPipeConnection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmPipeConnection.h b/Source/cmPipeConnection.h index 7b8984296d..49f9fdf8ad 100644 --- a/Source/cmPipeConnection.h +++ b/Source/cmPipeConnection.h @@ -4,6 +4,7 @@ #include "cmConfigure.h" // IWYU pragma: keep +#include "cmUVHandlePtr.h" #include <string> #include "cmConnection.h" @@ -23,6 +24,5 @@ public: private: const std::string PipeName; - uv_pipe_t* ServerPipe = nullptr; - uv_pipe_t* ClientPipe = nullptr; + cm::uv_pipe_ptr ServerPipe; }; |