3
0
mirror of https://github.com/triqs/dft_tools synced 2024-12-25 05:43:40 +01:00
- The workaround for align_t in C++14 mode has been fixed in recent
  version of clang.
- Does not apply to OS X (it uses libc++).
This commit is contained in:
Olivier Parcollet 2014-07-03 19:48:58 +02:00
parent 8d7dd34aeb
commit 62e84aa821

View File

@ -22,8 +22,8 @@
#define TRIQS_ARRAYS_FIRST_INCLUDE_PYTHON_H
// clang but not libc++
#if defined(__clang__) and !defined(_LIBCPP_VERSION)
// workaround an error in gcc stdlib
#if defined(__clang__) and !defined(_LIBCPP_VERSION) and (__clang_major__ <= 3) and (__clang_minor__ <= 4) and (__clang_patchlevel__ < 2)
// workaround an error in gcc stdlib, but corrected in clang 3.4.2
typedef long double max_align_t;
#endif