diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2011-12-27 13:36:45 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2011-12-27 13:37:36 +0100 |
commit | 693f266d810904945950fa72251df9c35bd6d9aa (patch) | |
tree | 70e2703499522df1d96aacb480c5d44de03c500a /fpicker | |
parent | 3678d3ec5af47ed3797e5c983dacb9b6722011b0 (diff) |
WaE: unused variables
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/aqua/CFStringUtilities.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fpicker/source/aqua/CFStringUtilities.hxx b/fpicker/source/aqua/CFStringUtilities.hxx index 578782b5567c..6974899a4025 100644 --- a/fpicker/source/aqua/CFStringUtilities.hxx +++ b/fpicker/source/aqua/CFStringUtilities.hxx @@ -71,6 +71,8 @@ inline void DBG_PRINT_ENTRY(const char * classname, const char * methodname, con OSL_TRACE(">>> %s::%s%s%s =", classname, methodname, PARAMFILLER, param1); #if OSL_DEBUG_LEVEL > 1 CFShow(value1); +#else + (void)value1; #endif } @@ -78,6 +80,8 @@ inline void DBG_PRINT_ENTRY(const char * classname, const char * methodname, con OSL_TRACE(">>> %s::%s%s%s =", classname, methodname, PARAMFILLER, param1); #if OSL_DEBUG_LEVEL > 1 NSLog(value1); +#else + (void)value1; #endif } @@ -145,6 +149,8 @@ inline void DBG_PRINT_EXIT(const char * classname, const char * methodname, cons OSL_TRACE("<<< %s::%s%sreturnValue = ", classname, methodname, PARAMFILLER); #if OSL_DEBUG_LEVEL > 1 CFShow(retVal); +#else + (void)retVal; #endif } @@ -152,6 +158,8 @@ inline void DBG_PRINT_EXIT(const char * classname, const char * methodname, cons OSL_TRACE("<<< %s::%s%sreturnValue = ", classname, methodname, PARAMFILLER); #if OSL_DEBUG_LEVEL > 1 NSLog(retVal); +#else + (void)retVal; #endif } |