Fixed VS2015 Update 3 fix

This commit is contained in:
Jan Möbius
2016-06-30 13:56:54 +02:00
parent 755f06bf11
commit 085e711856
2 changed files with 5 additions and 5 deletions

View File

@@ -11,7 +11,7 @@
<b>General</b> <b>General</b>
<ul> <ul>
<li>Fixed build error with Visual Studio 2015 Update 3</li> <li>Fixed build error with Visual Studio 2015 Update 3 (Fixed VS2015 Update 3 build error.</li>
</ul> </ul>

View File

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