Fixed returning address to temporary in functions. AABB also constructible from glm::vec4s.

This commit is contained in:
William Moberg
2015-12-16 12:19:43 +01:00
parent 04a01104b5
commit 99b76d7ae1
5 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ bool ComponentPoolForwardIterator::operator!=(const ComponentPoolForwardIterator
return m_MemoryPoolIterator != other.m_MemoryPoolIterator;
}
ComponentPoolForwardIterator& ComponentPoolForwardIterator::operator++(int)
ComponentPoolForwardIterator ComponentPoolForwardIterator::operator++(int)
{
ComponentPoolForwardIterator copyIter(*this);
operator++();