1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-08 17:05:25 +02:00

Windows build fix.

Refs 
This commit is contained in:
Gunnar Beutner 2014-04-09 12:38:26 +02:00
parent a16ef350e2
commit c2b18d4f35

@ -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);