diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-14 12:44:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-15 11:47:12 +0200 |
commit | 71b809959bb8f775d83dc52628448bb8b8322b28 (patch) | |
tree | f9aa4308050eb7d55611068602c0cf0e3c1b3690 /sal/osl/unx/signal.cxx | |
parent | 135907f2061550624ee1859745d94eee01849070 (diff) |
remove unnecessary use of void in function declarations
ie.
void f(void);
becomes
void f();
I used the following command to make the changes:
git grep -lP '\(\s*void\s*\)' -- *.cxx \
| xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;'
and ran it for both .cxx and .hxx files.
Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
Diffstat (limited to 'sal/osl/unx/signal.cxx')
-rw-r--r-- | sal/osl/unx/signal.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/osl/unx/signal.cxx b/sal/osl/unx/signal.cxx index 85773bd273cc..050aa81d0ade 100644 --- a/sal/osl/unx/signal.cxx +++ b/sal/osl/unx/signal.cxx @@ -169,7 +169,7 @@ static void getExecutableName_Impl (rtl_String ** ppstrProgName) } } -static bool is_soffice_Impl (void) +static bool is_soffice_Impl() { sal_Int32 idx = -1; rtl_String * strProgName = 0; @@ -183,7 +183,7 @@ static bool is_soffice_Impl (void) return (idx != -1); } -static bool InitSignal(void) +static bool InitSignal() { int i; struct sigaction act; @@ -272,7 +272,7 @@ static bool InitSignal(void) return true; } -static bool DeInitSignal(void) +static bool DeInitSignal() { int i; struct sigaction act; @@ -380,7 +380,7 @@ void CallSystemHandler(int Signal) } #if defined HAVE_VALGRIND_HEADERS -static void DUMPCURRENTALLOCS(void) +static void DUMPCURRENTALLOCS() { VALGRIND_PRINTF( "=== start memcheck dump of active allocations ===\n" ); |