From d1cad96bfc3cc4496a262e7ea6ec86de507cfce3 Mon Sep 17 00:00:00 2001 From: Alexandra Heuschling Date: Fri, 26 Feb 2021 19:15:40 +0100 Subject: [PATCH] clean up code --- src/OpenMesh/Core/IO/writer/OMWriter.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/OpenMesh/Core/IO/writer/OMWriter.cc b/src/OpenMesh/Core/IO/writer/OMWriter.cc index aab5a1cd..dd11cb17 100644 --- a/src/OpenMesh/Core/IO/writer/OMWriter.cc +++ b/src/OpenMesh/Core/IO/writer/OMWriter.cc @@ -652,14 +652,13 @@ size_t _OMWriter_::store_binary_custom_chunk(std::ostream& _os, // 4. block size bytes += store( _os, _bp.size_of(), OMFormat::Chunk::Integer_32, _swap ); - //omlog() << " n_bytes = " << _bp.size_of() << std::endl; + //omlog() << " block size = " << _bp.size_of() << std::endl; // 5. data { size_t b; bytes += ( b=_bp.store( _os, _swap ) ); - //omlog() << " b = " << b << std::endl; - assert( b == _bp.size_of() ); + assert(b == _bp.size_of()); } return bytes; }