Skip to content

Commit 88ac574

Browse files
committed
Workaround for GCC 13.0 and 13.1
1 parent 677f3b6 commit 88ac574

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

include/boost/math/tools/promotion.hpp

+49
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,32 @@ namespace boost
185185
#endif
186186

187187
#ifdef __STDCPP_FLOAT64_T__
188+
189+
#if __GNUC__ == 13 && __GNUC_MINOR__ < 2
190+
template <> struct promote_args_2<int, std::float64_t> { using type = double; };
191+
template <> struct promote_args_2<std::float64_t, int> { using type = double; };
192+
template <> struct promote_args_2<std::float64_t, float> { using type = double; };
193+
template <> struct promote_args_2<float, std::float64_t> { using type = double; };
194+
template <> struct promote_args_2<std::float64_t, double> { using type = double; };
195+
template <> struct promote_args_2<double, std::float64_t> { using type = double; };
196+
template <> struct promote_args_2<std::float64_t, long double> { using type = long double; };
197+
template <> struct promote_args_2<long double, std::float64_t> { using type = long double; };
198+
199+
200+
#ifdef __STDCPP_FLOAT16_T__
201+
template <> struct promote_args_2<std::float64_t, std::float16_t> { using type = double; };
202+
template <> struct promote_args_2<std::float16_t, std::float64_t> { using type = double; };
203+
#endif
204+
205+
#ifdef __STDCPP_FLOAT32_T__
206+
template <> struct promote_args_2<std::float64_t, std::float32_t> { using type = double; };
207+
template <> struct promote_args_2<std::float32_t, std::float64_t> { using type = double; };
208+
#endif
209+
210+
template <> struct promote_args_2<std::float64_t, std::float64_t> { using type = double; };
211+
212+
#else
213+
188214
template <> struct promote_args_2<int, std::float64_t> { using type = std::float64_t; };
189215
template <> struct promote_args_2<std::float64_t, int> { using type = std::float64_t; };
190216
template <> struct promote_args_2<std::float64_t, float> { using type = std::float64_t; };
@@ -193,6 +219,7 @@ namespace boost
193219
template <> struct promote_args_2<double, std::float64_t> { using type = std::float64_t; };
194220
template <> struct promote_args_2<std::float64_t, long double> { using type = long double; };
195221
template <> struct promote_args_2<long double, std::float64_t> { using type = long double; };
222+
196223

197224
#ifdef __STDCPP_FLOAT16_T__
198225
template <> struct promote_args_2<std::float64_t, std::float16_t> { using type = std::float64_t; };
@@ -206,8 +233,29 @@ namespace boost
206233

207234
template <> struct promote_args_2<std::float64_t, std::float64_t> { using type = std::float64_t; };
208235
#endif
236+
#endif
209237

210238
#ifdef __STDCPP_FLOAT32_T__
239+
240+
#if __GNUC__ == 13 && __GNUC_MINOR__ < 2
241+
template <> struct promote_args_2<int, std::float32_t> { using type = float; };
242+
template <> struct promote_args_2<std::float32_t, int> { using type = float; };
243+
template <> struct promote_args_2<std::float32_t, float> { using type = float; };
244+
template <> struct promote_args_2<float, std::float32_t> { using type = float; };
245+
template <> struct promote_args_2<std::float32_t, double> { using type = double; };
246+
template <> struct promote_args_2<double, std::float32_t> { using type = double; };
247+
template <> struct promote_args_2<std::float32_t, long double> { using type = long double; };
248+
template <> struct promote_args_2<long double, std::float32_t> { using type = long double; };
249+
250+
#ifdef __STDCPP_FLOAT16_T__
251+
template <> struct promote_args_2<std::float32_t, std::float16_t> { using type = float; };
252+
template <> struct promote_args_2<std::float16_t, std::float32_t> { using type = float; };
253+
#endif
254+
255+
template <> struct promote_args_2<std::float32_t, std::float32_t> { using type = float; };
256+
257+
#else
258+
211259
template <> struct promote_args_2<int, std::float32_t> { using type = std::float32_t; };
212260
template <> struct promote_args_2<std::float32_t, int> { using type = std::float32_t; };
213261
template <> struct promote_args_2<std::float32_t, float> { using type = std::float32_t; };
@@ -224,6 +272,7 @@ namespace boost
224272

225273
template <> struct promote_args_2<std::float32_t, std::float32_t> { using type = std::float32_t; };
226274
#endif
275+
#endif
227276

228277
#ifdef __STDCPP_FLOAT16_T__
229278
template <> struct promote_args_2<int, std::float16_t> { using type = std::float16_t; };

0 commit comments

Comments
 (0)