Amend 48d9d01a: remove debug output

This commit is contained in:
Thibaut Cuvelier 2022-11-20 16:19:17 +01:00
parent 42425428f5
commit f3862130cf

View File

@ -1723,12 +1723,6 @@ IndexNode* buildIndexTree(vector<IndexEntry>& entries)
// as children.
auto* index_root = new IndexNode{{}, {}};
for (const IndexEntry& entry : entries) {
std::cout << "Entry: " << std::endl;
std::cout << entry.terms().empty() << std::endl;
std::cout << entry.terms().size() << std::endl;
for (const docstring& d : entry.terms()) {
std::cout << "\"" << to_utf8(d) << "\"" << std::endl;
}
insertIntoNode(entry, index_root);
}