do not use std::forward_as_tuple before MSVS2012

This commit is contained in:
Panagiotis Cheilaris 2015-06-22 19:08:44 +02:00
parent 9e15338ffc
commit e1be73c05b
1 changed files with 4 additions and 0 deletions

View File

@ -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