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
However, the avx2 implementation does not take a const uint8_t* but instead a uint8_t*. On further inspection this seems to hold true for other implementations. To my knowledge, all calls to shuffle actually call with a non-const pointer so I think it's likely fine to make these values non-const
Logs
Below you can find a fsanitize=undefined run that points this out:
Describe the bug
These two typedefs suggest that both
_src
and_dest
should beconst uint8_t*
.However, the avx2 implementation does not take a
const uint8_t*
but instead auint8_t*
. On further inspection this seems to hold true for other implementations. To my knowledge, all calls to shuffle actually call with a non-const pointer so I think it's likely fine to make these values non-constLogs
Below you can find a
fsanitize=undefined
run that points this out:https://github.com/EmilDohne/PhotoshopAPI/actions/runs/11365462630/job/31613700651
The text was updated successfully, but these errors were encountered: