Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-09-25 22:26:37 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-09-25 22:27:04 +0400
commitb90d849171e42513da98c9919d37048d652ca723 (patch)
tree495c24b4a8003636499e8ad89956ab80af87e7e6 /intern
parent38a54f4e01d627bb4489cfdbe9d844a89a9bc656 (diff)
Cycles: Fix for the MSVC which doesn't have default osteram constructor
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/util/util_logging.h2
1 files changed, 1 insertions, 1 deletions
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 {