Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Huffman performance regression on Linux/clang (AcademySoftwareFou…
…ndation#1480) PR AcademySoftwareFoundation#1323 introduces a nested #ifdef check that results in a performance regression on Linux systems that use the clang compiler. This is because the check for __clang__ succeeds, but the nested check for __APPLE__ fails. As a result, the elif case is not taken on Linux. Fixes issue AcademySoftwareFoundation#1479 Signed-off-by: Peter Urbanec <[email protected]>
- Loading branch information