Salome HOME
define SAT_ENABLE_PYTHON_PYMALLOC switch for Python >= 3.6
[tools/sat_salome.git] / products / patches / llvm-8.0.1-clang-FD34-gcc-11.0.patch
1 --- llvm-8.0.1_ref/utils/benchmark/src/benchmark_register.h     2022-04-11 13:40:41.292886023 +0200
2 +++ llvm-8.0.1_new/utils/benchmark/src/benchmark_register.h     2022-04-11 13:45:57.661074020 +0200
3 @@ -2,7 +2,13 @@
4  #define BENCHMARK_REGISTER_H
5  
6  #include <vector>
7 -
8 +#ifdef __GNUC__
9 +#include <features.h>
10 +# if __GNUC_PREREQ(11,0)
11 +#include <stdexcept>
12 +#include<limits>
13 +# endif
14 +#endif
15  #include "check.h"
16  
17  template <typename T>