Compilation fix.

git-svn-id: http://svn.purei.org/purei/trunk@1111 b36208d7-6611-0410-8bec-b1987f11c4a2
This commit is contained in:
jpd002 2013-04-21 06:56:03 +00:00
parent 9da5076ab2
commit 1e8ed6b265

View File

@ -126,9 +126,9 @@ void CBasicBlock::Compile()
assert(blockExists);
assert(blockIterator != blocksEnd);
assert(blockIterator->crc == blockChecksum);
assert(blockIterator->begin == m_begin);
assert(blockIterator->end == m_end);
assert(blockIterator->key.crc == blockChecksum);
assert(blockIterator->key.begin == m_begin);
assert(blockIterator->key.end == m_end);
m_function = reinterpret_cast<void (*)(void*)>(blockIterator->fct);