Clang Tidy: Fix warning

Fix readability-static-definition-in-anonymous-namespace in new code
This commit is contained in:
Hans Goudey 2020-08-27 14:18:06 -05:00
parent f1565e7f73
commit 714dbf273c
1 changed files with 1 additions and 1 deletions

View File

@ -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: