clean up code

This commit is contained in:
Alexandra Heuschling
2021-02-26 19:15:40 +01:00
parent 6eb87d89fd
commit d1cad96bfc

View File

@@ -652,13 +652,12 @@ 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());
}
return bytes;