unify int8_t/signed char/char in ply reader and writer.

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1292 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Matthias Möller
2015-06-18 13:17:51 +00:00
parent e9431e6557
commit 44800c3efc

View File

@@ -237,7 +237,7 @@ void _PLYReader_::readCustomProperty(std::istream& _in, BaseImporter& _bi, Handl
{
case ValueTypeINT8:
case ValueTypeCHAR:
assignCustomProperty<char>(_in,_bi,_h,_propName,isList);
assignCustomProperty<signed char>(_in,_bi,_h,_propName,isList);
break;
case ValueTypeUINT8:
case ValueTypeUCHAR: