Avoid warnings: unused parameter

Change-Id: I92fd33e020772eac735f133f467207da9635e9b4
This commit is contained in:
Tor Lillqvist 2014-01-16 23:22:44 +02:00
parent 2770bfd868
commit 38b4030703

View File

@ -1590,7 +1590,11 @@ void DbgOutf( const sal_Char*, ... ) {}
TOOLS_DLLPUBLIC void DbgUnhandledException(const css::uno::Any & caught, const char* currentFunction, const char* fileAndLineNo)
{
#if OSL_DEBUG_LEVEL > 0
#if OSL_DEBUG_LEVEL == 0
(void) caught;
(void) currentFunction;
(void) fileAndLineNo;
#else
OString sMessage( "caught an exception!" );
sMessage += "\nin function:";
sMessage += currentFunction;