Remove signed/unsigned warning
This commit is contained in:
parent
001fd1c573
commit
7da3794f20
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.25 2006/01/11 10:37:12 cignoni
|
||||||
|
Removed warning for unused vars
|
||||||
|
|
||||||
Revision 1.24 2006/01/10 13:20:42 cignoni
|
Revision 1.24 2006/01/10 13:20:42 cignoni
|
||||||
Changed ply::PlyMask to io::Mask
|
Changed ply::PlyMask to io::Mask
|
||||||
|
|
||||||
|
@ -816,7 +819,7 @@ static int Open( OpenMeshType &m, const char * filename, PlyInfo &pi )
|
||||||
if( TFILE == c.substr(0,TFILE.length()) )
|
if( TFILE == c.substr(0,TFILE.length()) )
|
||||||
{
|
{
|
||||||
bufstr = c.substr(TFILE.length()+1);
|
bufstr = c.substr(TFILE.length()+1);
|
||||||
n = bufstr.length();
|
n = static_cast<int>(bufstr.length());
|
||||||
for(i=0;i<n;i++)
|
for(i=0;i<n;i++)
|
||||||
if( bufstr[i]!=' ' && bufstr[i]!='\t' && bufstr[i]>32 && bufstr[i]<125 ) bufclean.push_back(bufstr[i]);
|
if( bufstr[i]!=' ' && bufstr[i]!='\t' && bufstr[i]>32 && bufstr[i]<125 ) bufclean.push_back(bufstr[i]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue