Another build fix for Windows.

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

View File

@ -34,7 +34,7 @@ namespace icinga
{
template<typename T>
class I2_BASE_API DynamicTypeIterator;
class DynamicTypeIterator;
class I2_BASE_API DynamicType : public Object
{
@ -85,7 +85,7 @@ private:
};
template<typename T>
class I2_BASE_API DynamicTypeIterator : public boost::iterator_facade<DynamicTypeIterator<T>, const shared_ptr<T>, boost::forward_traversal_tag>
class DynamicTypeIterator : public boost::iterator_facade<DynamicTypeIterator<T>, const shared_ptr<T>, boost::forward_traversal_tag>
{
public:
DynamicTypeIterator(const DynamicType::Ptr& type, int index)