diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-01 15:24:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-04 07:24:52 +0100 |
commit | 68f86457525c60f580954280d1a759aa174e8e96 (patch) | |
tree | d4f0d44d52cf3e744f1555074217e0f42007ac71 /bridges/inc/bridge.hxx | |
parent | 9634a818e8a9432db52bc8fcd534e7437e6bacee (diff) |
new loplugin salcall: remove unnecessary SAL_CALL
In this first commit, I use the plugin to verify the consistency of our
SAL_CALL annotations.
The point being to make the next commit more mechanical in nature,
purely using the rewriter.
There are various chunks of unix-only code that have never had to be
compiled by MSVC, hence the inconsistencies.
In bridges, I had to inline some typedefs to make the verification code
happy, since it cannot see into typedefs.
Change-Id: Iec6e274bed857febf7295cfcf5e9f21fe4a34da0
Reviewed-on: https://gerrit.libreoffice.org/45502
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'bridges/inc/bridge.hxx')
-rw-r--r-- | bridges/inc/bridge.hxx | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/bridges/inc/bridge.hxx b/bridges/inc/bridge.hxx index bae89b4b1364..d5c3ba9d9b40 100644 --- a/bridges/inc/bridge.hxx +++ b/bridges/inc/bridge.hxx @@ -33,28 +33,21 @@ namespace bridges { namespace cpp_uno { namespace shared { // private: -extern "C" typedef void SAL_CALL FreeMapping(uno_Mapping *); -FreeMapping freeMapping; +extern "C" void SAL_CALL freeMapping(uno_Mapping *); // private: -extern "C" -typedef void SAL_CALL AcquireMapping(uno_Mapping *); -AcquireMapping acquireMapping; +extern "C" void SAL_CALL acquireMapping(uno_Mapping *); // private: -extern "C" -typedef void SAL_CALL ReleaseMapping(uno_Mapping *); -ReleaseMapping releaseMapping; +extern "C" void SAL_CALL releaseMapping(uno_Mapping *); // private: -extern "C" typedef void SAL_CALL Cpp2unoMapping( +extern "C" void SAL_CALL cpp2unoMapping( uno_Mapping *, void **, void *, typelib_InterfaceTypeDescription *); -Cpp2unoMapping cpp2unoMapping; // private: -extern "C" typedef void SAL_CALL Uno2cppMapping( +extern "C" void SAL_CALL uno2cppMapping( uno_Mapping *, void **, void *, typelib_InterfaceTypeDescription *); -Uno2cppMapping uno2cppMapping; /** * Holding environments and mappings. |