diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-18 14:09:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-19 07:58:04 +0200 |
commit | ba80f637b82ef5df7c650ec301ca9ebb5f678f44 (patch) | |
tree | 4ce2956e796640b20f7abf3ad6a1ba40c64787bf /unotools | |
parent | 265072a4cafd9f8552264448e2fc049ae3ac97e5 (diff) |
clang-tidy modernize-redundant-void-arg
Change-Id: Ia25ac2e40f29e5b766a4c5c013fb53274196f656
Reviewed-on: https://gerrit.libreoffice.org/61934
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/ucbhelper/ucblockbytes.cxx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx index 8f8343a56870..04bb3225a515 100644 --- a/unotools/source/ucbhelper/ucblockbytes.cxx +++ b/unotools/source/ucbhelper/ucblockbytes.cxx @@ -342,10 +342,7 @@ public: const Reference< XStream >& aStream ) override; - virtual Reference<XStream> SAL_CALL - getStream ( - void - ) override + virtual Reference<XStream> SAL_CALL getStream () override { osl::MutexGuard aGuard(m_aMutex); return m_xStream; @@ -371,10 +368,7 @@ public: const Reference<XInputStream> &rxInputStream ) override; - virtual Reference<XInputStream> SAL_CALL - getInputStream ( - void - ) override + virtual Reference<XInputStream> SAL_CALL getInputStream() override { osl::MutexGuard aGuard(m_aMutex); return m_xStream; |