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>2018-03-23 16:32:18 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-03-23 16:38:02 +0300
commitab48e6355dfb279ac70f05637e5533548eea773a (patch)
treee64e99f489b39ed1b454b4c8ea1512ff1d825510 /intern/cycles/util
parent60712d12eb89fe85204f9a0dbc86e361b8ad6c58 (diff)
Glog/gflags: Reduce amount of local modifications
With better directory layout and more proper include statements we can avoid several local modifications, such as changing config.h for Windows Glog and the ones related on pass-through statements in logging headers in Glog. This commit also makes unused functions not-a-warning for external code.
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_logging.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/util/util_logging.h b/intern/cycles/util/util_logging.h
index 492f830e67c..5c84b6593d3 100644
--- a/intern/cycles/util/util_logging.h
+++ b/intern/cycles/util/util_logging.h
@@ -18,6 +18,7 @@
#define __UTIL_LOGGING_H__
#if defined(WITH_CYCLES_LOGGING) && !defined(__KERNEL_GPU__)
+# include <gflags/gflags.h>
# include <glog/logging.h>
#endif