Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use correct argument type for _BitScanReverse and _BitScanReverse64. (#…
…638) _BitScanReverse and _BitScanReverse64 are documented to take an `unsigned long *` as the first argument (see <https://learn.microsoft.com/en-us/cpp/intrinsics/bitscanreverse-bitscanreverse64?view=msvc-170>), however libFLAC used `uint32_t` which happens to be `unsigned int`. This silences Clang warning `incompatible pointer types passing 'uint32_t *' (aka 'unsigned int *') to parameter of type 'unsigned long *' [-Wincompatible-pointer-types]`. Fixes #637 See also #638 for comments
- Loading branch information