Make compiler happy.

This commit is contained in:
Pavel Krajcevski 2013-01-30 22:53:35 -05:00
parent f704fc55af
commit 5e970c3122

View file

@ -94,6 +94,7 @@ ParallelStage &ParallelStage::operator=(const ParallelStage &other) {
assert(m_NumBlocks == other.m_NumBlocks);
memcpy(m_Blocks, other.m_Blocks, m_NumBlocks * sizeof(m_Blocks[0]));
return *this;
}