Fixed subtle issue with new consolidated iterator that slightly altered it behavior.

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@549 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Hans-Christian Ebke
2012-03-01 17:06:44 +00:00
parent d3c3820221
commit 62ef24047a
2 changed files with 6 additions and 6 deletions

View File

@@ -76,10 +76,10 @@ public:
*/
//@{
/// Linear iterator
typedef Iterators::GenericIteratorT<This, This::VertexHandle> VertexIter;
typedef Iterators::GenericIteratorT<This, This::HalfedgeHandle> HalfedgeIter;
typedef Iterators::GenericIteratorT<This, This::EdgeHandle> EdgeIter;
typedef Iterators::GenericIteratorT<This, This::FaceHandle> FaceIter;
typedef Iterators::GenericIteratorT<This, This::VertexHandle, ArrayKernel, &This::has_vertex_status> VertexIter;
typedef Iterators::GenericIteratorT<This, This::HalfedgeHandle, ArrayKernel, &This::has_halfedge_status> HalfedgeIter;
typedef Iterators::GenericIteratorT<This, This::EdgeHandle, ArrayKernel, &This::has_edge_status> EdgeIter;
typedef Iterators::GenericIteratorT<This, This::FaceHandle, ArrayKernel, &This::has_face_status> FaceIter;
typedef VertexIter ConstVertexIter;
typedef HalfedgeIter ConstHalfedgeIter;