diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-11-23 21:55:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-11-23 21:56:22 +0100 |
commit | 0a1f03544a72596b5022985f2367bdcd0699adeb (patch) | |
tree | 683df4d15cae0a6b2d8438c63c71ac283d43f84d /sal | |
parent | 0b00165c300c6fe4cbdc952d49d050121d3d0063 (diff) |
Call getResult with fully qualified name.
Diffstat (limited to 'sal')
-rw-r--r-- | sal/inc/sal/log.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sal/inc/sal/log.hxx b/sal/inc/sal/log.hxx index cf22519b4423..2e09c29e5aa9 100644 --- a/sal/inc/sal/log.hxx +++ b/sal/inc/sal/log.hxx @@ -131,7 +131,8 @@ inline char const * unwrapStream(StreamIgnore const &) { #define SAL_DETAIL_LOG_STREAM(condition, level, area, where, stream) \ do { \ if (condition) { \ - if (sizeof getResult(::sal::detail::StreamStart() << stream) == 1) \ + if (sizeof ::sal::detail::getResult( \ + ::sal::detail::StreamStart() << stream) == 1) \ { \ ::sal_detail_log( \ (level), (area), (where), \ |