trying to work around a compiler problem in gcc 4.4.4

pull/40/head
Matchman Green 2012-05-20 15:00:44 +08:00
parent 6e3b84d85d
commit 2095d0f956
1 changed files with 2 additions and 1 deletions

View File

@ -196,8 +196,9 @@ private :
ImplVec m_children ;
} ;
Node::iterator::iterator( ImplVec::iterator i ) : iterator_adaptor(i)
Node::iterator::iterator( ImplVec::iterator i )// : iterator_adaptor(i)
{
base_reference() = i ;
}
Node::iterator::reference Node::iterator::dereference() const