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>2019-06-29 14:54:38 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-06-29 14:54:38 +0300
commitdd6aff71a7cc9bb3ef617940bb29b90d319854cb (patch)
treed34638df5171603f265f10121ddbff484857d0e8 /intern
parentf021635bd5311bff28d44989f2fc14d3e37215a8 (diff)
Fix compilation error without Cycles logging
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/util/util_logging.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/intern/cycles/util/util_logging.cpp b/intern/cycles/util/util_logging.cpp
index 783a372e59f..cc1e328ba6d 100644
--- a/intern/cycles/util/util_logging.cpp
+++ b/intern/cycles/util/util_logging.cpp
@@ -28,13 +28,17 @@ CCL_NAMESPACE_BEGIN
static bool is_verbosity_set()
{
- using CYCLES_GFLAGS_NAMESPACE::GetCommandLineOption;
+#ifdef WITH_CYCLES_LOGGING
+using CYCLES_GFLAGS_NAMESPACE::GetCommandLineOption;
std::string verbosity;
if (!GetCommandLineOption("v", &verbosity)) {
return false;
}
return verbosity != "0";
+#else
+ return false;
+#endif
}
void util_logging_init(const char *argv0)