forked from OSchip/llvm-project
[lldb][NFC] Make g_TotalSizeOfMetadata in ClangExternalASTSourceCommon.cpp static
Clang was warning that this global should be static (which makes sense).
This commit is contained in:
parent
a0f72441c8
commit
e9895c612a
|
@ -13,7 +13,7 @@
|
|||
|
||||
using namespace lldb_private;
|
||||
|
||||
uint64_t g_TotalSizeOfMetadata = 0;
|
||||
static uint64_t g_TotalSizeOfMetadata = 0;
|
||||
|
||||
typedef llvm::DenseMap<clang::ExternalASTSource *,
|
||||
ClangExternalASTSourceCommon *>
|
||||
|
|
Loading…
Reference in New Issue