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:
authorCampbell Barton <ideasman42@gmail.com>2019-07-07 16:45:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-07 16:45:35 +0300
commit28057d54de98687ed6ffdd47c2fcbb2e40f31d2e (patch)
treedeab8c3f636762b4eb04e30c8833c5e111cc606d /intern
parent9e12d762a27f0c23a7cea426cd9910ef275b152c (diff)
Cleanup: clang-format
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/util/util_logging.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/util/util_logging.cpp b/intern/cycles/util/util_logging.cpp
index cc1e328ba6d..e41250ab1b9 100644
--- a/intern/cycles/util/util_logging.cpp
+++ b/intern/cycles/util/util_logging.cpp
@@ -29,7 +29,7 @@ CCL_NAMESPACE_BEGIN
static bool is_verbosity_set()
{
#ifdef WITH_CYCLES_LOGGING
-using CYCLES_GFLAGS_NAMESPACE::GetCommandLineOption;
+ using CYCLES_GFLAGS_NAMESPACE::GetCommandLineOption;
std::string verbosity;
if (!GetCommandLineOption("v", &verbosity)) {
@@ -37,7 +37,7 @@ using CYCLES_GFLAGS_NAMESPACE::GetCommandLineOption;
}
return verbosity != "0";
#else
- return false;
+ return false;
#endif
}