Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
OpenMesh
Commits
755f06bf
Commit
755f06bf
authored
Jun 30, 2016
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed VS2015 Update 3 build error. (Thanks to Jeongkyu Kim for the patch)
parent
658632d8
Pipeline
#2246
failed with stage
in 2 minutes and 12 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
Doc/changelog.docu
Doc/changelog.docu
+6
-0
src/OpenMesh/Core/Mesh/PolyConnectivity.hh
src/OpenMesh/Core/Mesh/PolyConnectivity.hh
+4
-4
No files found.
Doc/changelog.docu
View file @
755f06bf
...
...
@@ -9,6 +9,12 @@
<tr valign=top><td><b>6.2</b> (?/?/?)</td><td>
<b>General</b>
<ul>
<li>Fixed build error with Visual Studio 2015 Update 3</li>
</ul>
<b>Build System</b>
<ul>
<li>Fixed mingw compilataion error</li>
...
...
src/OpenMesh/Core/Mesh/PolyConnectivity.hh
View file @
755f06bf
...
...
@@ -83,10 +83,10 @@ public:
*/
//@{
/// Linear iterator
typedef
Iterators
::
GenericIteratorT
<
This
,
This
::
VertexHandle
,
ArrayKernel
,
&
This
::
has_vertex_status
,
&
This
::
n_vertices
>
VertexIter
;
typedef
Iterators
::
GenericIteratorT
<
This
,
This
::
HalfedgeHandle
,
ArrayKernel
,
&
This
::
has_halfedge_status
,
&
This
::
n_halfedges
>
HalfedgeIter
;
typedef
Iterators
::
GenericIteratorT
<
This
,
This
::
EdgeHandle
,
ArrayKernel
,
&
This
::
has_edge_status
,
&
This
::
n_edges
>
EdgeIter
;
typedef
Iterators
::
GenericIteratorT
<
This
,
This
::
FaceHandle
,
ArrayKernel
,
&
This
::
has_face_status
,
&
This
::
n_faces
>
FaceIter
;
typedef
Iterators
::
GenericIteratorT
<
This
,
This
::
VertexHandle
,
ArrayKernel
,
&
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
::
EdgeHandle
,
ArrayKernel
,
&
has_edge_status
,
&
This
::
n_edges
>
EdgeIter
;
typedef
Iterators
::
GenericIteratorT
<
This
,
This
::
FaceHandle
,
ArrayKernel
,
&
has_face_status
,
&
This
::
n_faces
>
FaceIter
;
typedef
VertexIter
ConstVertexIter
;
typedef
HalfedgeIter
ConstHalfedgeIter
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment