Переглянути джерело

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 роки тому
батько
коміт
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
 {
-	std::cout << std::endl;
 	// 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
 	std::vector<bool> map(m_vertices.size(), false);