Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix "RLE" compression with big endian architectures
This was missed in #1831. The RLE methods compare a string of bytes directly with itself to directly derive a simple run length encoding. They use similar but not identical methods to compare256. This needs a similar endianness check at compile time to know which compare bit count to use (leading or trailing).
- Loading branch information