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:
authorHans Goudey <h.goudey@me.com>2020-08-27 22:18:06 +0300
committerHans Goudey <h.goudey@me.com>2020-08-27 22:18:06 +0300
commit714dbf273ce6393a0d2b57c3549830cc7df17750 (patch)
tree10fc8fb1dcb2e43327482248af1380d55d6546be
parentf1565e7f73b8a33a992876b2b4131ba6ee10e0ba (diff)
Clang Tidy: Fix warning
Fix readability-static-definition-in-anonymous-namespace in new code
-rw-r--r--intern/guardedalloc/intern/leak_detector.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/guardedalloc/intern/leak_detector.cc b/intern/guardedalloc/intern/leak_detector.cc
index bb816e7f2d3..0ecf2ed8ba7 100644
--- a/intern/guardedalloc/intern/leak_detector.cc
+++ b/intern/guardedalloc/intern/leak_detector.cc
@@ -31,7 +31,7 @@ char free_after_leak_detection_message[] =
namespace {
-static bool fail_on_memleak = false;
+bool fail_on_memleak = false;
class MemLeakPrinter {
public: