casted returned value type to avoid warning C4267

This commit is contained in:
Paolo Cignoni 2006-09-07 09:25:49 +00:00
parent be5317d84c
commit cf6421124f
1 changed files with 4 additions and 1 deletions

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.12 2006/08/29 15:38:36 pietroni
in GridDoRay function the RayIterator must be initialized with maximum distance
Revision 1.11 2006/08/23 15:17:46 marfr960
*** empty log message ***
@ -264,7 +267,7 @@ namespace vcg{
++Cli;
i++;
}
return (_objectPtrs.size());
return (int)(_objectPtrs.size());
}
template <class SPATIALINDEXING,class OBJMARKER, class OBJPTRCONTAINER>