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 <mliberty@precisioninno.com>
This commit is contained in:
Matt Liberty 2025-08-04 04:51:41 +00:00
parent 2c33fb5583
commit 3914cc88df
1 changed files with 0 additions and 1 deletions

View File

@ -327,7 +327,6 @@ BfsIterator::remove(Vertex *vertex)
&& static_cast<Level>(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;