Remove a warning for lcc tests

This commit is contained in:
Guillaume Damiand 2023-06-09 12:45:19 +02:00
parent eb9dd93ae5
commit 1237c7a398
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ struct Myattrib : public CGAL::Cell_attribute_with_point
struct MonInfo
{
MonInfo(int i=0) : mnb(i==0?rand():i), ptr(reinterpret_cast<char*>(this))
MonInfo(long long int i=0) : mnb(i==0?rand():static_cast<int>(i)),
ptr(reinterpret_cast<char*>(this))
{}
bool operator==(const MonInfo& info) const