summaryrefslogtreecommitdiff
path: root/cppu/source/helper/purpenv/helper_purpenv_Environment.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-14 12:44:47 +0200
committerNoel Grandin <noel@peralex.com>2015-04-15 11:47:12 +0200
commit71b809959bb8f775d83dc52628448bb8b8322b28 (patch)
treef9aa4308050eb7d55611068602c0cf0e3c1b3690 /cppu/source/helper/purpenv/helper_purpenv_Environment.cxx
parent135907f2061550624ee1859745d94eee01849070 (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 'cppu/source/helper/purpenv/helper_purpenv_Environment.cxx')
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Environment.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/cppu/source/helper/purpenv/helper_purpenv_Environment.cxx b/cppu/source/helper/purpenv/helper_purpenv_Environment.cxx
index d3b47bfee7f0..f6dc421b4db6 100644
--- a/cppu/source/helper/purpenv/helper_purpenv_Environment.cxx
+++ b/cppu/source/helper/purpenv/helper_purpenv_Environment.cxx
@@ -76,11 +76,11 @@ class Base : public cppu::Enterable
public:
explicit Base(uno_Environment * pEnv, cppu::Enterable * pEnterable);
- void acquireWeak(void);
- void releaseWeak(void);
+ void acquireWeak();
+ void releaseWeak();
void harden (uno_Environment ** ppHardEnv);
- void acquire (void);
- void release (void);
+ void acquire();
+ void release();
void registerProxyInterface (void ** ppProxy,
uno_freeProxyFunc freeProxy,
@@ -100,8 +100,8 @@ public:
void acquireInterface (void * pInterface);
void releaseInterface (void * pInterface);
- virtual void v_enter (void) SAL_OVERRIDE;
- virtual void v_leave (void) SAL_OVERRIDE;
+ virtual void v_enter() SAL_OVERRIDE;
+ virtual void v_leave() SAL_OVERRIDE;
virtual void v_callInto_v(uno_EnvCallee * pCallee, va_list * pParam) SAL_OVERRIDE;
virtual void v_callOut_v (uno_EnvCallee * pCallee, va_list * pParam) SAL_OVERRIDE;
virtual bool v_isValid (rtl::OUString * pReason) SAL_OVERRIDE;
@@ -281,14 +281,14 @@ Base::~Base()
m_pEnv->release(m_pEnv);
}
-void Base::acquire(void)
+void Base::acquire()
{
m_env_acquire(m_pEnv);
osl_atomic_increment(&m_nRef);
}
-void Base::release(void)
+void Base::release()
{
if (osl_atomic_decrement(&m_nRef) == 0)
delete this;
@@ -303,12 +303,12 @@ void Base::harden(uno_Environment ** ppHardEnv)
osl_atomic_increment(&m_nRef);
}
-void Base::acquireWeak(void)
+void Base::acquireWeak()
{
m_env_acquireWeak(m_pEnv);
}
-void Base::releaseWeak(void)
+void Base::releaseWeak()
{
m_env_releaseWeak(m_pEnv);
}
@@ -493,12 +493,12 @@ void Base::releaseInterface(void * pInterface)
m_env_releaseInterface);
}
-void Base::v_enter(void)
+void Base::v_enter()
{
m_pEnterable->enter();
}
-void Base::v_leave(void)
+void Base::v_leave()
{
m_pEnterable->leave();
}