libwebm: removed warning in x64 mode
Change-Id: I391ad625babdede58c8025b332ee2c949e930454
This commit is contained in:
@@ -1889,9 +1889,11 @@ SeekHead::SeekHead(
|
||||
|
||||
assert(pos == stop);
|
||||
|
||||
m_count = ptrdiff_t(pEntry - m_entries);
|
||||
assert(m_count >= 0);
|
||||
assert(m_count <= count);
|
||||
const ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries);
|
||||
assert(count_ >= 0);
|
||||
assert(count_ <= count);
|
||||
|
||||
m_count = static_cast<int>(count_);
|
||||
}
|
||||
|
||||
SeekHead::~SeekHead()
|
||||
|
||||
Reference in New Issue
Block a user