mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-04 16:02:15 +00:00
Since the introduction of "ColumnLimit: 120" in .clang-format, the column limit has become 120 characters instead of 80 characters. This prevents clang-format from generating too much changes even if just a small portion of a source file or header file is modified.
32 lines
757 B
C++
32 lines
757 B
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#include "lsp.hh"
|
|
|
|
#include <algorithm>
|
|
#include <queue>
|
|
|
|
namespace ccls {
|
|
template <typename Node> std::vector<Location> flattenHierarchy(const std::optional<Node> &root) {
|
|
if (!root)
|
|
return {};
|
|
std::vector<Location> ret;
|
|
std::queue<const Node *> q;
|
|
for (auto &entry : root->children)
|
|
q.push(&entry);
|
|
while (q.size()) {
|
|
auto *entry = q.front();
|
|
q.pop();
|
|
if (entry->location.uri.raw_uri.size())
|
|
ret.push_back({entry->location});
|
|
for (auto &entry1 : entry->children)
|
|
q.push(&entry1);
|
|
}
|
|
std::sort(ret.begin(), ret.end());
|
|
ret.erase(std::unique(ret.begin(), ret.end()), ret.end());
|
|
return ret;
|
|
}
|
|
} // namespace ccls
|