From 7c704c78d3c652504c064b4ac7af55a2c1ee49bb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 21 Jan 2012 15:21:16 +0100 Subject: 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. --- stoc/source/defaultregistry/defaultregistry.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'stoc/source/defaultregistry') diff --git a/stoc/source/defaultregistry/defaultregistry.cxx b/stoc/source/defaultregistry/defaultregistry.cxx index da291d219a03..a385426f73ff 100644 --- a/stoc/source/defaultregistry/defaultregistry.cxx +++ b/stoc/source/defaultregistry/defaultregistry.cxx @@ -1380,7 +1380,8 @@ void SAL_CALL NestedRegistryImpl::mergeKey( const OUString& aKeyName, const OUSt namespace stoc_bootstrap { //************************************************************************* -Reference SAL_CALL NestedRegistry_CreateInstance( const Reference& ) +Reference SAL_CALL NestedRegistry_CreateInstance( + SAL_UNUSED_PARAMETER const Reference& ) throw(Exception) { Reference xRet; -- cgit