remove debugg output

This commit is contained in:
Alexandra Heuschling
2020-11-29 17:37:46 +01:00
parent 5ce175a76a
commit 0b18560655
2 changed files with 0 additions and 20 deletions

View File

@@ -59,12 +59,6 @@
#include <OpenMesh/Core/IO/writer/OMWriter.hh>
#include <OpenMesh/Core/Utils/typename.hh>
//DEBUGG
#include <iostream>
//END
//=== NAMESPACES ==============================================================
@@ -199,11 +193,6 @@ bool _OMReader_::read_binary(std::istream& _is, BaseImporter& _bi, Options& _opt
bytes_ += restore(_is, property_name_, swap);
}
//DEBUGG
//std::cout << "the property name is : " << property_name_ << std::endl;
//std::cout << "the header version is : " << OMFormat::as_string(header_.version_) << std::endl;
//END
// Read in the property data. If it is an anonymous or unknown named
// property, then skip data.
switch (chunk_header_.entity_) {
@@ -819,11 +808,6 @@ size_t _OMReader_::restore_binary_custom_data(std::istream& _is, BaseProperty* _
//--------------------------------helper
void _OMReader_:: add_generic_property(OMFormat::Chunk::PropertyName& _property_type, BaseImporter& _bi) const
{
//DEBUGG
std::cout << "the property name is : " << property_name_ << std::endl;
std::cout << "the property type is : " << _property_type << std::endl;
//END
if(_property_type == get_string_for_type(bool()))
{
add_generic_property_aux<bool>(_bi);