mirror of
https://github.com/taglib/taglib.git
synced 2025-11-12 20:52:52 -05:00
Back to unsigned long, it breaks compilation on Solaris
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@1216598 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
@ -189,7 +189,7 @@ void Footer::parse(const ByteVector &data)
|
||||
|
||||
// Read the flags
|
||||
|
||||
std::bitset<32> flags(static_cast<unsigned long long>(data.mid(20, 4).toUInt(false)));
|
||||
std::bitset<32> flags(static_cast<unsigned long>(data.mid(20, 4).toUInt(false)));
|
||||
|
||||
d->headerPresent = flags[31];
|
||||
d->footerPresent = !flags[30];
|
||||
|
||||
Reference in New Issue
Block a user