Skip to content

Commit 4142b5b

Browse files
committed
[NFC] Fix uninitialized data member in constructor.
1 parent 22fdc57 commit 4142b5b

File tree

1 file changed

+1
-0
lines changed
  • clang-tools-extra/clangd/index/dex

1 file changed

+1
-0
lines changed

clang-tools-extra/clangd/index/dex/Dex.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ class Dex : public SymbolIndex {
5858
KeepAlive = std::shared_ptr<void>(
5959
std::make_shared<Payload>(std::move(BackingData)), nullptr);
6060
this->BackingDataSize = BackingDataSize;
61+
this->IdxContents = IndexContents::All;
6162
}
6263

6364
template <typename SymbolRange, typename RefsRange, typename RelationsRange,

0 commit comments

Comments
 (0)