You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the new 4.3.8, there is a truncation warning (warning == error for me). This warning happens when the container has a 32 bit range (eg. Qt5 vector).
This is in Rng::shuffle:
auto b1 = static_cast<size_t>
suggested fix:
auto b1 = static_cast<decltype(i)>
Same thing for b2 = ....
The text was updated successfully, but these errors were encountered:
With the new 4.3.8, there is a truncation warning (warning == error for me). This warning happens when the container has a 32 bit range (eg. Qt5 vector).
This is in Rng::shuffle:
auto b1 = static_cast<size_t>
suggested fix:
auto b1 = static_cast<decltype(i)>
Same thing for b2 = ....
The text was updated successfully, but these errors were encountered: