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
Compress sometime returns wrong compressed array while it tries shift_buffer by 32.
I made quick workaround with:
if (static_cast(-bits) == 0x20) buffer = 0;
else
buffer = data >> static_cast< DataT >( -bits );