From 3914cc88df1ac499ee0b0699a8219b5b7ce3655a Mon Sep 17 00:00:00 2001 From: Matt Liberty Date: Mon, 4 Aug 2025 04:51:41 +0000 Subject: [PATCH] Remove stray printf in BfsIterator::remove This appears to be leftover debug code: printf("bfs remove %s\n", vertex->to_string(this).c_str()); Signed-off-by: Matt Liberty --- search/Bfs.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/search/Bfs.cc b/search/Bfs.cc index 42cb4885..c6d23ec9 100644 --- a/search/Bfs.cc +++ b/search/Bfs.cc @@ -327,7 +327,6 @@ BfsIterator::remove(Vertex *vertex) && static_cast(queue_.size()) > level) { debugPrint(debug_, "bfs", 2, "remove %s", vertex->to_string(this).c_str()); - printf("bfs remove %s\n", vertex->to_string(this).c_str()); for (Vertex *&v : queue_[level]) { if (v == vertex) { v = nullptr;