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
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-07-05 21:39:34 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-07-05 21:40:55 +0300
commit31f8ca503495e5900a4ec5f7361b3c20bf365f37 (patch)
tree3c6dd923454ab7d7950532436ab5ef116fae42c9
parentd2f748a222ad19f1b81a27e0fa46de4570264432 (diff)
Cycles: Fix compilation error after recent logging changes
This file uses std::ostream for helper << operators, so need to make sure corresponding header is included.
-rw-r--r--intern/cycles/util/util_logging.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/intern/cycles/util/util_logging.h b/intern/cycles/util/util_logging.h
index 6380cb13a9b..492f830e67c 100644
--- a/intern/cycles/util/util_logging.h
+++ b/intern/cycles/util/util_logging.h
@@ -21,6 +21,8 @@
# include <glog/logging.h>
#endif
+#include <iostream>
+
CCL_NAMESPACE_BEGIN
#if !defined(WITH_CYCLES_LOGGING) || defined(__KERNEL_GPU__)