mirror of https://github.com/CGAL/cgal
Tiny size_type change
This commit is contained in:
parent
25a08a264e
commit
55bcd9861d
|
|
@ -245,7 +245,7 @@ public:
|
|||
|
||||
// Create solution.
|
||||
const c_float *x = work->solution->x;
|
||||
for(c_int i=0; i<static_cast<c_int>(n); ++i)
|
||||
for(std::size_t i=0; i<n; ++i)
|
||||
{
|
||||
const FT value{x[i]};
|
||||
*(++solution) = value;
|
||||
|
|
|
|||
Loading…
Reference in New Issue