[LyX/master] Amend 48d9d01a: remove debug output

Thibaut Cuvelier tcuvelier at lyx.org
Sun Nov 20 14:25:09 UTC 2022


commit f3862130cf687854dbff2df348f34659ca602a02
Author: Thibaut Cuvelier <tcuvelier at lyx.org>
Date:   Sun Nov 20 16:19:17 2022 +0100

    Amend 48d9d01a: remove debug output
---
 src/insets/InsetIndex.cpp |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/src/insets/InsetIndex.cpp b/src/insets/InsetIndex.cpp
index bd38cf5..f40ba03 100644
--- a/src/insets/InsetIndex.cpp
+++ b/src/insets/InsetIndex.cpp
@@ -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);
 	}
 


More information about the lyx-cvs mailing list