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 /include/cppu | |
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 'include/cppu')
-rw-r--r-- | include/cppu/Enterable.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/cppu/Enterable.hxx b/include/cppu/Enterable.hxx index 2c20986da680..4670ab52d49e 100644 --- a/include/cppu/Enterable.hxx +++ b/include/cppu/Enterable.hxx @@ -36,8 +36,8 @@ class Enterable : public uno_Enterable public: /* These methods need to be implemented in a derived class. */ - virtual void v_enter (void) = 0; - virtual void v_leave (void) = 0; + virtual void v_enter() = 0; + virtual void v_leave() = 0; virtual void v_callInto_v(uno_EnvCallee * pCallee, va_list * pParam) = 0; virtual void v_callOut_v (uno_EnvCallee * pCallee, va_list * pParam) = 0; virtual bool v_isValid (rtl::OUString * pReason) = 0; @@ -45,10 +45,10 @@ public: virtual ~Enterable() {} public: - inline explicit Enterable(void); + inline explicit Enterable(); - inline void enter(void) {m_enter(this);} - inline void leave(void) {m_leave(this);} + inline void enter() {m_enter(this);} + inline void leave() {m_leave(this);} inline void callInto_v(uno_EnvCallee * pCallee, va_list * pParam) {m_callInto_v(this, pCallee, pParam);} inline void callOut_v (uno_EnvCallee * pCallee, va_list * pParam) {m_callOut_v (this, pCallee, pParam);} @@ -73,7 +73,7 @@ extern "C" inline int Enterable_call_isValid (void * context, rtl_uString ** {return static_cast<Enterable *>(context)->v_isValid(reinterpret_cast<rtl::OUString *>(pReason));} -Enterable::Enterable(void) +Enterable::Enterable() { m_enter = Enterable_call_enter; m_leave = Enterable_call_leave; |