diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-22 15:38:19 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-27 13:45:45 (GMT) |
commit | b3b6ede6a1e04d43c95eb816e6b710b63adc84b3 (patch) | |
tree | d393e0fc6d8593305a7521ce5a065b63150703e4 /Source/cmWorkerPool.cxx | |
parent | cdfc4e31953274be9b745614b4b7620d365a7b5e (diff) | |
download | CMake-b3b6ede6a1e04d43c95eb816e6b710b63adc84b3.zip CMake-b3b6ede6a1e04d43c95eb816e6b710b63adc84b3.tar.gz CMake-b3b6ede6a1e04d43c95eb816e6b710b63adc84b3.tar.bz2 |
clang-tidy: fix `readability-redundant-access-specifiers` warnings
Diffstat (limited to 'Source/cmWorkerPool.cxx')
-rw-r--r-- | Source/cmWorkerPool.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmWorkerPool.cxx b/Source/cmWorkerPool.cxx index 7971009..1d15c27 100644 --- a/Source/cmWorkerPool.cxx +++ b/Source/cmWorkerPool.cxx @@ -31,7 +31,6 @@ public: /// On error the ssize_t argument is a non zero libuv error code using EndFunction = std::function<void(ssize_t)>; -public: /** * Reset to construction state */ @@ -65,7 +64,6 @@ private: uv_buf_t* buf); static void UVData(uv_stream_t* stream, ssize_t nread, const uv_buf_t* buf); -private: cm::uv_pipe_ptr UVPipe_; std::vector<char> Buffer_; DataFunction DataFunction_; @@ -154,7 +152,6 @@ public: bool MergedOutput = false; }; -public: // -- Const accessors SetupT const& Setup() const { return this->Setup_; } cmWorkerPool::ProcessResultT* Result() const { return this->Setup_.Result; } @@ -176,7 +173,6 @@ private: void UVPipeErrEnd(ssize_t error); void UVTryFinish(); -private: // -- Setup SetupT Setup_; // -- Runtime @@ -407,7 +403,6 @@ private: static void UVProcessStart(uv_async_t* handle); void UVProcessFinished(); -private: // -- Process management struct { @@ -520,7 +515,6 @@ public: static void UVSlotBegin(uv_async_t* handle); static void UVSlotEnd(uv_async_t* handle); -public: // -- UV loop #ifdef CMAKE_UV_SIGNAL_HACK std::unique_ptr<cmUVSignalHackRAII> UVHackRAII; |