From e1be73c05b0dcc96dda2f20f74bd650286b3200a Mon Sep 17 00:00:00 2001 From: Panagiotis Cheilaris Date: Mon, 22 Jun 2015 19:08:44 +0200 Subject: [PATCH] do not use std::forward_as_tuple before MSVS2012 --- .../Segment_Delaunay_graph_Linf_2/Voronoi_vertex_ring_C2.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_ring_C2.h b/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_ring_C2.h index 5d7ba326d09..9ec47280b42 100644 --- a/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_ring_C2.h +++ b/Segment_Delaunay_graph_Linf_2/include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_ring_C2.h @@ -17,7 +17,11 @@ namespace CGAL { namespace SegmentDelaunayGraphLinf_2 { #ifndef CGAL_CFG_NO_CPP0X_TUPLE +#if (defined(_MSC_VER) && (_MSC_VER < 1700)) +#define sdg_tuple_maker cpp11::make_tuple +#else #define sdg_tuple_maker std::forward_as_tuple +#endif #else #define sdg_tuple_maker cpp11::make_tuple #endif