Skip to content

Commit f59e35d

Browse files
committed
fix the test of CGAL_VERSION_NR
1 parent 85d0d0a commit f59e35d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SWIG_CGAL/Triangulation_2/Constrained_triangulation_plus_2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ struct Iterator_helper<std::pair<SWIG_Triangulation_2::CGAL_Vertex_handle<Triang
2121

2222
template <class T1, class T2>
2323
static std::pair<Vertex_handle,Vertex_handle> convert(const std::pair<T1,T2>& i){
24-
#if CGAL_VERSION_NR >= 1060100910
24+
#if CGAL_VERSION_NR >= 1060100900
2525
return std::pair<Vertex_handle,Vertex_handle>(Vertex_handle(i.first),Vertex_handle(i.second));
2626
#else
2727
return std::pair<Vertex_handle,Vertex_handle>(Vertex_handle(i.first.first),Vertex_handle(i.first.second));

0 commit comments

Comments
 (0)