diff --git a/Doc/changelog.docu b/Doc/changelog.docu
index a45200d3..93574df8 100644
--- a/Doc/changelog.docu
+++ b/Doc/changelog.docu
@@ -9,6 +9,12 @@
| 6.2 (?/?/?) |
+General
+
+- Fixed build error with Visual Studio 2015 Update 3 (Fixed VS2015 Update 3 build error.
+
+
+
Build System
- Fixed mingw compilataion error
diff --git a/src/OpenMesh/Core/Mesh/PolyConnectivity.hh b/src/OpenMesh/Core/Mesh/PolyConnectivity.hh
index b784e722..c7e966e3 100644
--- a/src/OpenMesh/Core/Mesh/PolyConnectivity.hh
+++ b/src/OpenMesh/Core/Mesh/PolyConnectivity.hh
@@ -83,10 +83,10 @@ public:
*/
//@{
/// Linear iterator
- typedef Iterators::GenericIteratorT VertexIter;
- typedef Iterators::GenericIteratorT HalfedgeIter;
- typedef Iterators::GenericIteratorT EdgeIter;
- typedef Iterators::GenericIteratorT FaceIter;
+ typedef Iterators::GenericIteratorT VertexIter;
+ typedef Iterators::GenericIteratorT HalfedgeIter;
+ typedef Iterators::GenericIteratorT EdgeIter;
+ typedef Iterators::GenericIteratorT FaceIter;
typedef VertexIter ConstVertexIter;
typedef HalfedgeIter ConstHalfedgeIter;
|