Просмотр исходного кода

Deletes print statement in the exact_geodesics method (#1625)

The print statement is always called, which affects debugging output of
calling libraries.
Camilo Talero 5 лет назад
Родитель
Сommit
d69073c329
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      include/igl/exact_geodesic.cpp

+ 0 - 1
include/igl/exact_geodesic.cpp

@@ -1027,7 +1027,6 @@ inline void Mesh::build_adjacencies()
 
 
 inline bool Mesh::verify()		//verifies connectivity of the mesh and prints some debug info
 inline bool Mesh::verify()		//verifies connectivity of the mesh and prints some debug info
 {
 {
-	std::cout << std::endl;
 	// make sure that all vertices are mentioned at least once.
 	// make sure that all vertices are mentioned at least once.
 	// though the loose vertex is not a bug, it most likely indicates that something is wrong with the mesh
 	// though the loose vertex is not a bug, it most likely indicates that something is wrong with the mesh
 	std::vector<bool> map(m_vertices.size(), false);
 	std::vector<bool> map(m_vertices.size(), false);