switch to Simple

This commit is contained in:
Sébastien Loriot 2022-06-24 17:38:12 +02:00
parent aa9f5215c4
commit e3e8545498
1 changed files with 2 additions and 2 deletions

View File

@ -545,7 +545,7 @@ bool write_PLY(std::ostream& os,
if(okay) if(okay)
{ {
os << "property char " << prop[i] << std::endl; os << "property char " << prop[i] << std::endl;
printers.push_back(new internal::Char_property_printer<Index,Int8_map>(pmap)); printers.push_back(new internal::Simple_property_printer<Index,Int8_map>(pmap));
continue; continue;
} }
} }
@ -555,7 +555,7 @@ bool write_PLY(std::ostream& os,
if(okay) if(okay)
{ {
os << "property uchar " << prop[i] << std::endl; os << "property uchar " << prop[i] << std::endl;
printers.push_back(new internal::Char_property_printer<Index,Uint8_map>(pmap)); printers.push_back(new internal::Simple_property_printer<Index,Uint8_map>(pmap));
continue; continue;
} }
} }