mirror of
https://github.com/taglib/taglib.git
synced 2025-11-17 07:02:53 -05:00
Skip unnecessary CMake tests
This commit is contained in:
@ -222,14 +222,14 @@ ulonglong byteSwap<ulonglong>(ulonglong x)
|
||||
|
||||
#else
|
||||
|
||||
return (x & 0xff00000000000000ull) >> 56)
|
||||
| (x & 0x00ff000000000000ull) >> 40)
|
||||
| (x & 0x0000ff0000000000ull) >> 24)
|
||||
| (x & 0x000000ff00000000ull) >> 8)
|
||||
| (x & 0x00000000ff000000ull) << 8)
|
||||
| (x & 0x0000000000ff0000ull) << 24)
|
||||
| (x & 0x000000000000ff00ull) << 40)
|
||||
| (x & 0x00000000000000ffull) << 56);
|
||||
return ((x & 0xff00000000000000ull) >> 56)
|
||||
| ((x & 0x00ff000000000000ull) >> 40)
|
||||
| ((x & 0x0000ff0000000000ull) >> 24)
|
||||
| ((x & 0x000000ff00000000ull) >> 8)
|
||||
| ((x & 0x00000000ff000000ull) << 8)
|
||||
| ((x & 0x0000000000ff0000ull) << 24)
|
||||
| ((x & 0x000000000000ff00ull) << 40)
|
||||
| ((x & 0x00000000000000ffull) << 56);
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user