mirror of https://github.com/CGAL/cgal
Added static_cast
This commit is contained in:
parent
796e9b30cd
commit
f6c700da1b
|
|
@ -766,7 +766,7 @@ int test_zone ( Zone& rZone )
|
||||||
{
|
{
|
||||||
if ( sOffsetAtEntry.size() > 0 )
|
if ( sOffsetAtEntry.size() > 0 )
|
||||||
{
|
{
|
||||||
int lSize = std::distance(lTimes.begin(),lTimes.end());
|
int lSize = static_cast<int>(std::distance(lTimes.begin(),lTimes.end()));
|
||||||
|
|
||||||
for ( std::vector<int>::const_iterator oi = sOffsetAtEntry.begin() ; oi != sOffsetAtEntry.end() ; ++ oi )
|
for ( std::vector<int>::const_iterator oi = sOffsetAtEntry.begin() ; oi != sOffsetAtEntry.end() ; ++ oi )
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue