@@ -185,6 +185,32 @@ namespace boost
185
185
#endif
186
186
187
187
#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
+
188
214
template <> struct promote_args_2 <int , std::float64_t > { using type = std::float64_t ; };
189
215
template <> struct promote_args_2 <std::float64_t , int > { using type = std::float64_t ; };
190
216
template <> struct promote_args_2 <std::float64_t , float > { using type = std::float64_t ; };
@@ -193,6 +219,7 @@ namespace boost
193
219
template <> struct promote_args_2 <double , std::float64_t > { using type = std::float64_t ; };
194
220
template <> struct promote_args_2 <std::float64_t , long double > { using type = long double ; };
195
221
template <> struct promote_args_2 <long double , std::float64_t > { using type = long double ; };
222
+
196
223
197
224
#ifdef __STDCPP_FLOAT16_T__
198
225
template <> struct promote_args_2 <std::float64_t , std::float16_t > { using type = std::float64_t ; };
@@ -206,8 +233,29 @@ namespace boost
206
233
207
234
template <> struct promote_args_2 <std::float64_t , std::float64_t > { using type = std::float64_t ; };
208
235
#endif
236
+ #endif
209
237
210
238
#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
+
211
259
template <> struct promote_args_2 <int , std::float32_t > { using type = std::float32_t ; };
212
260
template <> struct promote_args_2 <std::float32_t , int > { using type = std::float32_t ; };
213
261
template <> struct promote_args_2 <std::float32_t , float > { using type = std::float32_t ; };
@@ -224,6 +272,7 @@ namespace boost
224
272
225
273
template <> struct promote_args_2 <std::float32_t , std::float32_t > { using type = std::float32_t ; };
226
274
#endif
275
+ #endif
227
276
228
277
#ifdef __STDCPP_FLOAT16_T__
229
278
template <> struct promote_args_2 <int , std::float16_t > { using type = std::float16_t ; };
0 commit comments