summaryrefslogtreecommitdiff
path: root/include/connectivity/sqliterator.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-06 08:59:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-07 11:25:55 +0100
commitdd0dceb51122b4e8e969f848d9f046e91962d254 (patch)
treef927f0870a54ad7cb887e6e7d5bb7956d44d0665 /include/connectivity/sqliterator.hxx
parentcaf1eb15838729e05a70d2fcb8de6834394b5764 (diff)
loplugin:salcall handle static methods
Change-Id: Id6820abec4b8ca8bee26d62b333fd30b42a14aec Reviewed-on: https://gerrit.libreoffice.org/46007 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/connectivity/sqliterator.hxx')
-rw-r--r--include/connectivity/sqliterator.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/connectivity/sqliterator.hxx b/include/connectivity/sqliterator.hxx
index e9a0fc119768..68810e20b046 100644
--- a/include/connectivity/sqliterator.hxx
+++ b/include/connectivity/sqliterator.hxx
@@ -158,13 +158,13 @@ namespace connectivity
const OSQLParser& _rParser );
~OSQLParseTreeIterator();
- static void * SAL_CALL operator new( size_t nSize )
+ static void * operator new( size_t nSize )
{ return ::rtl_allocateMemory( nSize ); }
- static void * SAL_CALL operator new( size_t,void* _pHint )
+ static void * operator new( size_t,void* _pHint )
{ return _pHint; }
- static void SAL_CALL operator delete( void * pMem )
+ static void operator delete( void * pMem )
{ ::rtl_freeMemory( pMem ); }
- static void SAL_CALL operator delete( void *,void* )
+ static void operator delete( void *,void* )
{ }
void dispose();