File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ class MemIndex : public SymbolIndex {
97
97
// Set of files which were used during this index build.
98
98
llvm::StringSet<> Files;
99
99
// Contents of the index (symbols, references, etc.)
100
- IndexContents IdxContents;
100
+ IndexContents IdxContents = IndexContents::None ;
101
101
std::shared_ptr<void > KeepAlive; // poor man's move-only std::any
102
102
// Size of memory retained by KeepAlive.
103
103
size_t BackingDataSize = 0 ;
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ class Dex : public SymbolIndex {
146
146
// Set of files which were used during this index build.
147
147
llvm::StringSet<> Files;
148
148
// Contents of the index (symbols, references, etc.)
149
- IndexContents IdxContents;
149
+ IndexContents IdxContents = IndexContents::None ;
150
150
// Size of memory retained by KeepAlive.
151
151
size_t BackingDataSize = 0 ;
152
152
};
You can’t perform that action at this time.
0 commit comments