mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-29 02:51:57 +00:00
fix build (no more using ID
)
This commit is contained in:
parent
dc9ba782aa
commit
b27b1a6d59
@ -203,7 +203,7 @@ void MessageHandler::textDocument_semanticTokensRange(
|
|||||||
|
|
||||||
// Make ranges non-overlapping using a scan line algorithm.
|
// Make ranges non-overlapping using a scan line algorithm.
|
||||||
std::vector<ScanLineEvent> events;
|
std::vector<ScanLineEvent> events;
|
||||||
ScanLineEvent::Id id = 0;
|
int id = 0;
|
||||||
for (auto &entry : grouped_symbols) {
|
for (auto &entry : grouped_symbols) {
|
||||||
CclsSemanticHighlightSymbol &symbol = entry.second;
|
CclsSemanticHighlightSymbol &symbol = entry.second;
|
||||||
for (auto &loc : symbol.lsRangeAndRoles) {
|
for (auto &loc : symbol.lsRangeAndRoles) {
|
||||||
|
Loading…
Reference in New Issue
Block a user