diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-01 08:57:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-01 11:20:17 +0200 |
commit | ad4d09db4a359748f5ecf5e78a3513ef3878e9c1 (patch) | |
tree | 7085515b695ac84b76c59bf7471c53e0b664a1cf /salhelper | |
parent | b3e7d61278701ffcc5330e8d65cf9e78991a1754 (diff) |
clang-tidy:readability-redundant-member-init
Change-Id: Ic5abfe2d047750d8dfd3ae8cc733fa15d34ea505
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121432
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'salhelper')
-rw-r--r-- | salhelper/source/condition.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/salhelper/source/condition.cxx b/salhelper/source/condition.cxx index a83cc753e0a7..9f1408debcdf 100644 --- a/salhelper/source/condition.cxx +++ b/salhelper/source/condition.cxx @@ -32,8 +32,7 @@ using namespace salhelper; ******************************************************************/ Condition::Condition(osl::Mutex& aMutex) - : m_aMutex(aMutex), - m_aCondition() + : m_aMutex(aMutex) { } |