[ 2024-01-11; Reflector poll ]
Set priority to 2 after reflector poll.
More precisely, the resolution forces value
to be converted
to uint_least32_t
, which doesn't necessarily truncate, and if it
does truncate, it doesn't necessarily change the value.
But it will truncate whenever value_type
is wider than
uint_least32_t
,
e.g. for 32-bit uint_least32_t
you get a different result for
std::ranlux48_base(UINT_MAX + 1LL)()
.
The new proposed resolution below restores the old behaviour for that type.