Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions clang-tools-extra/clangd/index/MemIndex.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class MemIndex : public SymbolIndex {
KeepAlive = std::shared_ptr<void>(
std::make_shared<Payload>(std::move(BackingData)), nullptr);
this->BackingDataSize = BackingDataSize;
this->IdxContents = IndexContents::All;
}

template <typename SymbolRange, typename RefRange, typename RelationRange,
Expand Down
1 change: 1 addition & 0 deletions clang-tools-extra/clangd/index/dex/Dex.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ class Dex : public SymbolIndex {
KeepAlive = std::shared_ptr<void>(
std::make_shared<Payload>(std::move(BackingData)), nullptr);
this->BackingDataSize = BackingDataSize;
this->IdxContents = IndexContents::All;
}

template <typename SymbolRange, typename RefsRange, typename RelationsRange,
Expand Down
Loading