Bug 1290644 Remove VS2010 workaround in dom/media/. r=ayang

This commit is contained in:
Chris Peterson 2016-07-30 20:41:09 -07:00
Родитель 8dbb362d18
Коммит 3bc5c811b1
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -1401,8 +1401,7 @@ FullBox::FullBox(const nsACString& aType, uint8_t aVersion, uint32_t aFlags,
ISOControl* aControl) ISOControl* aControl)
: Box(aType, aControl) : Box(aType, aControl)
{ {
// Cast to uint64_t due to VC2010 bug. std::bitset<24> tmp_flags(aFlags);
std::bitset<24> tmp_flags((uint64_t)aFlags);
version = aVersion; version = aVersion;
flags = tmp_flags; flags = tmp_flags;
size += sizeof(version) + flags.size() / CHAR_BIT; size += sizeof(version) + flags.size() / CHAR_BIT;