From 5bd5baff3f2a55bc2d84e1e352a00dd6969394e3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 23 Jun 2016 11:37:33 +0200 Subject: 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 Reviewed-by: Noel Grandin --- ucbhelper/source/provider/fd_inputstream.cxx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'ucbhelper') 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; } -- cgit