diff options
-rw-r--r-- | sal/osl/all/log.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sal/osl/all/log.cxx b/sal/osl/all/log.cxx index da7eeeba250e..276cbe43a600 100644 --- a/sal/osl/all/log.cxx +++ b/sal/osl/all/log.cxx @@ -156,11 +156,9 @@ void maybeOutputTimestamp(std::ostringstream &s) { #endif -namespace { - inline bool isDebug(sal_detail_LogLevel level) { - return level == SAL_DETAIL_LOG_LEVEL_DEBUG || - level == SAL_DETAIL_LOG_LEVEL_DEBUG_TRACE; - } +bool isDebug(sal_detail_LogLevel level) { + return level == SAL_DETAIL_LOG_LEVEL_DEBUG || + level == SAL_DETAIL_LOG_LEVEL_DEBUG_TRACE; } bool report(sal_detail_LogLevel level, char const * area) { |