mirror of https://github.com/CGAL/cgal
Work-around C++0x tuple bug with GCC4.4
This commit is contained in:
parent
9fceea22cc
commit
c20bbba168
|
|
@ -32,6 +32,10 @@
|
||||||
#if defined( _LIBCPP_VERSION ) // check if libc++ is used
|
#if defined( _LIBCPP_VERSION ) // check if libc++ is used
|
||||||
#define CGAL_CFG_NO_CPP0X_TUPLE
|
#define CGAL_CFG_NO_CPP0X_TUPLE
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(__GNUC__) && defined(__GNUC_MINOR__) && (__GNUC__ <= 4) && (__GNUC_MINOR__ <= 4)
|
||||||
|
#define CGAL_CFG_NO_CPP0X_TUPLE
|
||||||
|
#define CGAL_CFG_NO_CPP0X_VARIADIC_TEMPLATES
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CGAL_CFG_NO_CPP0X_TUPLE
|
#ifndef CGAL_CFG_NO_CPP0X_TUPLE
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue