Cycles: Fix for the MSVC which doesn't have default osteram constructor

This commit is contained in:
Sergey Sharybin 2014-09-26 00:26:37 +06:00
parent 38a54f4e01
commit b90d849171

@ -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 {