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/store | |
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/store')
-rw-r--r-- | include/store/store.hxx | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/include/store/store.hxx b/include/store/store.hxx index 85c546564e47..943b73ccd570 100644 --- a/include/store/store.hxx +++ b/include/store/store.hxx @@ -37,13 +37,13 @@ class OStoreStream public: /** Construction. */ - inline OStoreStream (void) + inline OStoreStream() : m_hImpl (0) {} /** Destruction. */ - inline ~OStoreStream (void) + inline ~OStoreStream() { if (m_hImpl) (void) store_releaseHandle (m_hImpl); @@ -81,7 +81,7 @@ public: /** Conversion into Stream Handle. */ - inline operator storeStreamHandle (void) const + inline operator storeStreamHandle() const { return m_hImpl; } @@ -89,7 +89,7 @@ public: /** Check for a valid Stream Handle. @return sal_True if valid, sal_False otherwise. */ - inline bool isValid (void) const + inline bool isValid() const { return (m_hImpl != 0); } @@ -114,7 +114,7 @@ public: /** Close the stream. @see store_closeStream() */ - inline void close (void) + inline void close() { if (m_hImpl) { @@ -156,7 +156,7 @@ public: /** Flush the stream. @see store_flushStream() */ - inline storeError flush (void) const + inline storeError flush() const { if (!m_hImpl) return store_E_InvalidHandle; @@ -202,13 +202,13 @@ class OStoreDirectory public: /** Construction. */ - inline OStoreDirectory (void) + inline OStoreDirectory() : m_hImpl (0) {} /** Destruction. */ - inline ~OStoreDirectory (void) + inline ~OStoreDirectory() { if (m_hImpl) (void) store_releaseHandle (m_hImpl); @@ -246,7 +246,7 @@ public: /** Conversion into Directory Handle. */ - inline operator storeDirectoryHandle(void) const + inline operator storeDirectoryHandle() const { return m_hImpl; } @@ -254,7 +254,7 @@ public: /** Check for a valid Directory Handle. @return sal_True if valid, sal_False otherwise. */ - inline bool isValid (void) const + inline bool isValid() const { return (m_hImpl != 0); } @@ -279,7 +279,7 @@ public: /** Close the directory. @see store_closeDirectory() */ - inline void close (void) + inline void close() { if (m_hImpl) { @@ -332,13 +332,13 @@ class OStoreFile public: /** Construction. */ - inline OStoreFile (void) + inline OStoreFile() : m_hImpl (0) {} /** Destruction. */ - inline ~OStoreFile (void) + inline ~OStoreFile() { if (m_hImpl) (void) store_releaseHandle (m_hImpl); @@ -376,7 +376,7 @@ public: /** Conversion into File Handle. */ - inline operator storeFileHandle (void) const + inline operator storeFileHandle() const { return m_hImpl; } @@ -384,7 +384,7 @@ public: /** Check for a valid File Handle. @return sal_True if valid, sal_False otherwise. */ - inline bool isValid (void) const + inline bool isValid() const { return (m_hImpl != 0); } @@ -422,7 +422,7 @@ public: /** Close the file. @see store_closeFile() */ - inline void close (void) + inline void close() { if (m_hImpl) { @@ -434,7 +434,7 @@ public: /** Flush the file. @see store_flushFile() */ - inline storeError flush (void) const + inline storeError flush() const { if (!m_hImpl) return store_E_InvalidHandle; |