diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-23 11:37:33 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-23 10:57:45 +0000 |
commit | 5bd5baff3f2a55bc2d84e1e352a00dd6969394e3 (patch) | |
tree | ee80e3ac5c98bd1321e5a3e79f0f93f5bb09f745 /ucbhelper | |
parent | d43f4390e006716ca538ad92d09bd012179efd66 (diff) |
remove some more (void) style function definitions/declarations
found with
git grep -nP '^\s*void\s*\)'
Change-Id: I1206031cf957cb6f957cae64ec5cae1280bda694
Reviewed-on: https://gerrit.libreoffice.org/26590
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/fd_inputstream.cxx | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/ucbhelper/source/provider/fd_inputstream.cxx b/ucbhelper/source/provider/fd_inputstream.cxx index e9210a7a5c8a..d22b2b651730 100644 --- a/ucbhelper/source/provider/fd_inputstream.cxx +++ b/ucbhelper/source/provider/fd_inputstream.cxx @@ -146,8 +146,7 @@ namespace ucbhelper sal_Int64 SAL_CALL - FdInputStream::getPosition( - void ) + FdInputStream::getPosition() throw( IOException, RuntimeException, std::exception ) { @@ -161,11 +160,8 @@ namespace ucbhelper } - sal_Int64 SAL_CALL FdInputStream::getLength( - void - ) throw( - IOException,RuntimeException, std::exception - ) + sal_Int64 SAL_CALL FdInputStream::getLength() + throw( IOException,RuntimeException, std::exception ) { return m_nLength; } |