Add this and using for ansi compliance

This commit is contained in:
Andreas Fabri 2010-05-11 07:12:41 +00:00
parent beaff6d265
commit a17043ab9a
2 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public:
for (Iterator current = first; current != beyond; current++)
{
push_back(current);
this->push_back(current);
}
}
};

View File

@ -49,6 +49,7 @@ public:
typedef typename internal::vector<Node>::iterator Self_iterator;
typedef typename Traits::Point_2 Point_2;
using internal::vector< Rotation_tree_node_2<Traits_> >::push_back;
// constructor
template<class ForwardIterator>