summaryrefslogtreecommitdiff
path: root/sal/inc/sal/log.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/inc/sal/log.hxx')
-rw-r--r--sal/inc/sal/log.hxx16
1 files changed, 15 insertions, 1 deletions
diff --git a/sal/inc/sal/log.hxx b/sal/inc/sal/log.hxx
index be71d021d560..cf22519b4423 100644
--- a/sal/inc/sal/log.hxx
+++ b/sal/inc/sal/log.hxx
@@ -91,25 +91,39 @@ template< typename T > inline StreamIgnore operator <<(
StreamStart const &, T const &)
{
std::abort();
+#if defined _MSC_VER
+ return StreamIgnore();
+#endif
}
template< typename T > inline StreamIgnore operator <<(
StreamString const &, T const &)
{
std::abort();
+#if defined _MSC_VER
+ return StreamIgnore();
+#endif
}
template< typename T > inline StreamIgnore operator <<(
StreamIgnore const &, T const &)
{
std::abort();
+#if defined _MSC_VER
+ return StreamIgnore();
+#endif
}
template< typename T > typename T::Result getResult(T const &);
inline char const * unwrapStream(StreamString const & s) { return s.string; }
-inline char const * unwrapStream(StreamIgnore const &) { std::abort(); }
+inline char const * unwrapStream(StreamIgnore const &) {
+ std::abort();
+#if defined _MSC_VER
+ return 0;
+#endif
+}
} }