From b90d849171e42513da98c9919d37048d652ca723 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 26 Sep 2014 00:26:37 +0600 Subject: [PATCH] Cycles: Fix for the MSVC which doesn't have default osteram constructor --- intern/cycles/util/util_logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/cycles/util/util_logging.h b/intern/cycles/util/util_logging.h index 2bd0fac7fa6..991789e7460 100644 --- a/intern/cycles/util/util_logging.h +++ b/intern/cycles/util/util_logging.h @@ -28,7 +28,7 @@ CCL_NAMESPACE_BEGIN #if !defined(WITH_CYCLES_LOGGING) || defined(__KERNEL_GPU__) class StubStream : public std::ostream { public: - StubStream () { } + StubStream() : std::ostream(NULL) { } }; class LogMessageVoidify {