summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-11-23 16:09:51 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-11-24 07:00:02 +0100
commit4504d6ddf1b466ae069e7fa0c97f93b74ed0f724 (patch)
treeb972d98eead6739f7d892f9cfecc67819315751e /io
parent651658d37bcb3f493942dd5d0b9a0d65c96f105c (diff)
loplugin:unusedfields make some fields private
this is one of the secondary analyses this plugin performs Change-Id: I1c496e234513362338600180e51f7e71e605a7cc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143180 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'io')
-rw-r--r--io/source/acceptor/acceptor.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/io/source/acceptor/acceptor.hxx b/io/source/acceptor/acceptor.hxx
index 9dc3690166cc..221ad16d2b2d 100644
--- a/io/source/acceptor/acceptor.hxx
+++ b/io/source/acceptor/acceptor.hxx
@@ -39,6 +39,7 @@ namespace io_acceptor {
void stopAccepting();
+ private:
std::mutex m_mutex;
::osl::Pipe m_pipe;
OUString m_sPipeName;
@@ -59,6 +60,7 @@ namespace io_acceptor {
void stopAccepting();
+ private:
::osl::SocketAddr m_addr;
::osl::AcceptorSocket m_socket;
OUString m_sSocketName;