diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-01-21 15:21:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-01-21 15:21:16 +0100 |
commit | 7c704c78d3c652504c064b4ac7af55a2c1ee49bb (patch) | |
tree | 623358cf25839219ef4fd90eea4f3eaa55389a1f /cppuhelper/source/macro_expander.cxx | |
parent | 0d5167915b47df7c3e450614ea50d845ba959df3 (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/macro_expander.cxx')
-rw-r--r-- | cppuhelper/source/macro_expander.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppuhelper/source/macro_expander.cxx b/cppuhelper/source/macro_expander.cxx index 35322327d169..431e24c76c01 100644 --- a/cppuhelper/source/macro_expander.cxx +++ b/cppuhelper/source/macro_expander.cxx @@ -111,7 +111,7 @@ protected: virtual void SAL_CALL disposing(); public: - inline Bootstrap_MacroExpander( Reference< XComponentContext > const & ) SAL_THROW( () ) + inline Bootstrap_MacroExpander() SAL_THROW( () ) : t_uno_impl( m_mutex ) {} virtual ~Bootstrap_MacroExpander() @@ -173,10 +173,10 @@ OUString Bootstrap_MacroExpander::expandMacros( OUString const & exp ) //================================================================================================== Reference< XInterface > SAL_CALL service_create( - Reference< XComponentContext > const & xComponentContext ) + SAL_UNUSED_PARAMETER Reference< XComponentContext > const & ) SAL_THROW( (RuntimeException) ) { - return static_cast< ::cppu::OWeakObject * >( new Bootstrap_MacroExpander( xComponentContext ) ); + return static_cast< ::cppu::OWeakObject * >( new Bootstrap_MacroExpander ); } } |