mirror of https://github.com/CGAL/cgal
do not use std::forward_as_tuple before MSVS2012
This commit is contained in:
parent
9e15338ffc
commit
e1be73c05b
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue