Windows build fix.

Refs #5987
This commit is contained in:
Gunnar Beutner 2014-04-09 12:38:26 +02:00
parent a16ef350e2
commit c2b18d4f35
1 changed files with 12 additions and 1 deletions

View File

@ -99,10 +99,21 @@ private:
int m_Index;
mutable shared_ptr<T> m_Current;
void increment(void) {
void increment(void)
{
m_Index++;
}
void decrement(void)
{
m_Index--;
}
void advance(int n)
{
m_Index += n;
}
bool equal(const DynamicTypeIterator<T>& other) const
{
ASSERT(other.m_Type == m_Type);