summaryrefslogtreecommitdiff
path: root/cppuhelper/source/implementationentry.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-21 15:21:16 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-21 15:21:16 +0100
commit7c704c78d3c652504c064b4ac7af55a2c1ee49bb (patch)
tree623358cf25839219ef4fd90eea4f3eaa55389a1f /cppuhelper/source/implementationentry.cxx
parent0d5167915b47df7c3e450614ea50d845ba959df3 (diff)
Removed some unused parameters; added SAL_UNUSED_PARAMETER.
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
Diffstat (limited to 'cppuhelper/source/implementationentry.cxx')
-rw-r--r--cppuhelper/source/implementationentry.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/cppuhelper/source/implementationentry.cxx b/cppuhelper/source/implementationentry.cxx
index 4aa41501e9dd..bd617b8c9f2c 100644
--- a/cppuhelper/source/implementationentry.cxx
+++ b/cppuhelper/source/implementationentry.cxx
@@ -37,7 +37,8 @@ using namespace ::com::sun::star::registry;
namespace cppu {
sal_Bool component_writeInfoHelper(
- void *, void *pRegistryKey , const struct ImplementationEntry entries[] )
+ SAL_UNUSED_PARAMETER void *, void * pRegistryKey,
+ ImplementationEntry const * entries)
{
sal_Bool bRet = sal_False;
try
@@ -70,8 +71,8 @@ sal_Bool component_writeInfoHelper(
void * component_getFactoryHelper(
- const sal_Char * pImplName, void *, void *,
- const struct ImplementationEntry entries[] )
+ char const * pImplName, SAL_UNUSED_PARAMETER void *,
+ SAL_UNUSED_PARAMETER void *, ImplementationEntry const * entries)
{
void * pRet = 0;