Tiny size_type change

This commit is contained in:
Mael Rouxel-Labbé 2021-06-10 18:13:26 +02:00
parent 25a08a264e
commit 55bcd9861d
1 changed files with 1 additions and 1 deletions

View File

@ -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;