libstdc++
version.h
Go to the documentation of this file.
1// Copyright (C) 2023-2024 Free Software Foundation, Inc.
2
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// Under Section 7 of GPL version 3, you are granted additional
15// permissions described in the GCC Runtime Library Exception, version
16// 3.1, as published by the Free Software Foundation.
17
18// You should have received a copy of the GNU General Public License and
19// a copy of the GCC Runtime Library Exception along with this program;
20// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
21// <http://www.gnu.org/licenses/>.
22
23// DO NOT EDIT THIS FILE (version.h)
24//
25// It has been AutoGen-ed
26// From the definitions version.def
27// and the template file version.tpl
28
29/** @file bits/version.h
30 * This is an internal header file, included by other library headers.
31 * Do not attempt to use it directly. @headername{version}
32 */
33
34// Usage guide:
35//
36// In your usual header, do something like:
37//
38// #define __glibcxx_want_ranges
39// #define __glibcxx_want_concepts
40// #include <bits/version.h>
41//
42// This will generate the FTMs you named, and let you use them in your code as
43// if it was user code. All macros are also exposed under __glibcxx_NAME even
44// if unwanted, to permit bits and other FTMs to depend on them for condtional
45// computation without exposing extra FTMs to user code.
46
47#pragma GCC system_header
48
49#include <bits/c++config.h>
50
51// from version.def line 65
52#if !defined(__cpp_lib_incomplete_container_elements)
53# if _GLIBCXX_HOSTED
54# define __glibcxx_incomplete_container_elements 201505L
55# if defined(__glibcxx_want_all) || defined(__glibcxx_want_incomplete_container_elements)
56# define __cpp_lib_incomplete_container_elements 201505L
57# endif
58# endif
59#endif /* !defined(__cpp_lib_incomplete_container_elements) && defined(__glibcxx_want_incomplete_container_elements) */
60#undef __glibcxx_want_incomplete_container_elements
61
62// from version.def line 73
63#if !defined(__cpp_lib_uncaught_exceptions)
64# if ((defined(__STRICT_ANSI__) && __cplusplus >= 201703L) || (!defined(__STRICT_ANSI__) && __cplusplus >= 199711L))
65# define __glibcxx_uncaught_exceptions 201411L
66# if defined(__glibcxx_want_all) || defined(__glibcxx_want_uncaught_exceptions)
67# define __cpp_lib_uncaught_exceptions 201411L
68# endif
69# endif
70#endif /* !defined(__cpp_lib_uncaught_exceptions) && defined(__glibcxx_want_uncaught_exceptions) */
71#undef __glibcxx_want_uncaught_exceptions
72
73// from version.def line 82
74#if !defined(__cpp_lib_allocator_traits_is_always_equal)
75# if (__cplusplus >= 201103L)
76# define __glibcxx_allocator_traits_is_always_equal 201411L
77# if defined(__glibcxx_want_all) || defined(__glibcxx_want_allocator_traits_is_always_equal)
78# define __cpp_lib_allocator_traits_is_always_equal 201411L
79# endif
80# endif
81#endif /* !defined(__cpp_lib_allocator_traits_is_always_equal) && defined(__glibcxx_want_allocator_traits_is_always_equal) */
82#undef __glibcxx_want_allocator_traits_is_always_equal
83
84// from version.def line 90
85#if !defined(__cpp_lib_is_null_pointer)
86# if (__cplusplus >= 201103L)
87# define __glibcxx_is_null_pointer 201309L
88# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_null_pointer)
89# define __cpp_lib_is_null_pointer 201309L
90# endif
91# endif
92#endif /* !defined(__cpp_lib_is_null_pointer) && defined(__glibcxx_want_is_null_pointer) */
93#undef __glibcxx_want_is_null_pointer
94
95// from version.def line 98
96#if !defined(__cpp_lib_result_of_sfinae)
97# if (__cplusplus >= 201103L)
98# define __glibcxx_result_of_sfinae 201210L
99# if defined(__glibcxx_want_all) || defined(__glibcxx_want_result_of_sfinae)
100# define __cpp_lib_result_of_sfinae 201210L
101# endif
102# endif
103#endif /* !defined(__cpp_lib_result_of_sfinae) && defined(__glibcxx_want_result_of_sfinae) */
104#undef __glibcxx_want_result_of_sfinae
105
106// from version.def line 106
107#if !defined(__cpp_lib_shared_ptr_arrays)
108# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
109# define __glibcxx_shared_ptr_arrays 201707L
110# if defined(__glibcxx_want_all) || defined(__glibcxx_want_shared_ptr_arrays)
111# define __cpp_lib_shared_ptr_arrays 201707L
112# endif
113# elif (__cplusplus >= 201103L) && _GLIBCXX_HOSTED
114# define __glibcxx_shared_ptr_arrays 201611L
115# if defined(__glibcxx_want_all) || defined(__glibcxx_want_shared_ptr_arrays)
116# define __cpp_lib_shared_ptr_arrays 201611L
117# endif
118# endif
119#endif /* !defined(__cpp_lib_shared_ptr_arrays) && defined(__glibcxx_want_shared_ptr_arrays) */
120#undef __glibcxx_want_shared_ptr_arrays
121
122// from version.def line 120
123#if !defined(__cpp_lib_is_swappable)
124# if ((defined(__STRICT_ANSI__) && __cplusplus >= 201703L) || (!defined(__STRICT_ANSI__) && __cplusplus >= 201103L))
125# define __glibcxx_is_swappable 201603L
126# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_swappable)
127# define __cpp_lib_is_swappable 201603L
128# endif
129# endif
130#endif /* !defined(__cpp_lib_is_swappable) && defined(__glibcxx_want_is_swappable) */
131#undef __glibcxx_want_is_swappable
132
133// from version.def line 129
134#if !defined(__cpp_lib_void_t)
135# if ((defined(__STRICT_ANSI__) && __cplusplus >= 201703L) || (!defined(__STRICT_ANSI__) && __cplusplus >= 201103L))
136# define __glibcxx_void_t 201411L
137# if defined(__glibcxx_want_all) || defined(__glibcxx_want_void_t)
138# define __cpp_lib_void_t 201411L
139# endif
140# endif
141#endif /* !defined(__cpp_lib_void_t) && defined(__glibcxx_want_void_t) */
142#undef __glibcxx_want_void_t
143
144// from version.def line 138
145#if !defined(__cpp_lib_enable_shared_from_this)
146# if ((defined(__STRICT_ANSI__) && __cplusplus >= 201703L) || (!defined(__STRICT_ANSI__) && __cplusplus >= 201103L)) && _GLIBCXX_HOSTED
147# define __glibcxx_enable_shared_from_this 201603L
148# if defined(__glibcxx_want_all) || defined(__glibcxx_want_enable_shared_from_this)
149# define __cpp_lib_enable_shared_from_this 201603L
150# endif
151# endif
152#endif /* !defined(__cpp_lib_enable_shared_from_this) && defined(__glibcxx_want_enable_shared_from_this) */
153#undef __glibcxx_want_enable_shared_from_this
154
155// from version.def line 148
156#if !defined(__cpp_lib_math_spec_funcs)
157# if (__cplusplus >= 201103L)
158# define __glibcxx_math_spec_funcs 201003L
159# if defined(__glibcxx_want_all) || defined(__glibcxx_want_math_spec_funcs)
160# define __STDCPP_MATH_SPEC_FUNCS__ 201003L
161# endif
162# endif
163#endif /* !defined(__cpp_lib_math_spec_funcs) && defined(__glibcxx_want_math_spec_funcs) */
164#undef __glibcxx_want_math_spec_funcs
165
166// from version.def line 157
167#if !defined(__cpp_lib_coroutine)
168# if (__cplusplus >= 201402L) && (__cpp_impl_coroutine)
169# define __glibcxx_coroutine 201902L
170# if defined(__glibcxx_want_all) || defined(__glibcxx_want_coroutine)
171# define __cpp_lib_coroutine 201902L
172# endif
173# endif
174#endif /* !defined(__cpp_lib_coroutine) && defined(__glibcxx_want_coroutine) */
175#undef __glibcxx_want_coroutine
176
177// from version.def line 168
178#if !defined(__cpp_lib_exchange_function)
179# if (__cplusplus >= 201402L)
180# define __glibcxx_exchange_function 201304L
181# if defined(__glibcxx_want_all) || defined(__glibcxx_want_exchange_function)
182# define __cpp_lib_exchange_function 201304L
183# endif
184# endif
185#endif /* !defined(__cpp_lib_exchange_function) && defined(__glibcxx_want_exchange_function) */
186#undef __glibcxx_want_exchange_function
187
188// from version.def line 176
189#if !defined(__cpp_lib_integer_sequence)
190# if (__cplusplus >= 201402L)
191# define __glibcxx_integer_sequence 201304L
192# if defined(__glibcxx_want_all) || defined(__glibcxx_want_integer_sequence)
193# define __cpp_lib_integer_sequence 201304L
194# endif
195# endif
196#endif /* !defined(__cpp_lib_integer_sequence) && defined(__glibcxx_want_integer_sequence) */
197#undef __glibcxx_want_integer_sequence
198
199// from version.def line 184
200#if !defined(__cpp_lib_integral_constant_callable)
201# if (__cplusplus >= 201402L)
202# define __glibcxx_integral_constant_callable 201304L
203# if defined(__glibcxx_want_all) || defined(__glibcxx_want_integral_constant_callable)
204# define __cpp_lib_integral_constant_callable 201304L
205# endif
206# endif
207#endif /* !defined(__cpp_lib_integral_constant_callable) && defined(__glibcxx_want_integral_constant_callable) */
208#undef __glibcxx_want_integral_constant_callable
209
210// from version.def line 192
211#if !defined(__cpp_lib_is_final)
212# if (__cplusplus >= 201402L)
213# define __glibcxx_is_final 201402L
214# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_final)
215# define __cpp_lib_is_final 201402L
216# endif
217# endif
218#endif /* !defined(__cpp_lib_is_final) && defined(__glibcxx_want_is_final) */
219#undef __glibcxx_want_is_final
220
221// from version.def line 200
222#if !defined(__cpp_lib_make_reverse_iterator)
223# if (__cplusplus >= 201402L)
224# define __glibcxx_make_reverse_iterator 201402L
225# if defined(__glibcxx_want_all) || defined(__glibcxx_want_make_reverse_iterator)
226# define __cpp_lib_make_reverse_iterator 201402L
227# endif
228# endif
229#endif /* !defined(__cpp_lib_make_reverse_iterator) && defined(__glibcxx_want_make_reverse_iterator) */
230#undef __glibcxx_want_make_reverse_iterator
231
232// from version.def line 208
233#if !defined(__cpp_lib_null_iterators)
234# if (__cplusplus >= 201402L) && (!defined(_GLIBCXX_DEBUG))
235# define __glibcxx_null_iterators 201304L
236# if defined(__glibcxx_want_all) || defined(__glibcxx_want_null_iterators)
237# define __cpp_lib_null_iterators 201304L
238# endif
239# endif
240#endif /* !defined(__cpp_lib_null_iterators) && defined(__glibcxx_want_null_iterators) */
241#undef __glibcxx_want_null_iterators
242
243// from version.def line 217
244#if !defined(__cpp_lib_transformation_trait_aliases)
245# if (__cplusplus >= 201402L)
246# define __glibcxx_transformation_trait_aliases 201304L
247# if defined(__glibcxx_want_all) || defined(__glibcxx_want_transformation_trait_aliases)
248# define __cpp_lib_transformation_trait_aliases 201304L
249# endif
250# endif
251#endif /* !defined(__cpp_lib_transformation_trait_aliases) && defined(__glibcxx_want_transformation_trait_aliases) */
252#undef __glibcxx_want_transformation_trait_aliases
253
254// from version.def line 225
255#if !defined(__cpp_lib_transparent_operators)
256# if (__cplusplus >= 201402L)
257# define __glibcxx_transparent_operators 201510L
258# if defined(__glibcxx_want_all) || defined(__glibcxx_want_transparent_operators)
259# define __cpp_lib_transparent_operators 201510L
260# endif
261# endif
262#endif /* !defined(__cpp_lib_transparent_operators) && defined(__glibcxx_want_transparent_operators) */
263#undef __glibcxx_want_transparent_operators
264
265// from version.def line 233
266#if !defined(__cpp_lib_tuple_element_t)
267# if (__cplusplus >= 201402L)
268# define __glibcxx_tuple_element_t 201402L
269# if defined(__glibcxx_want_all) || defined(__glibcxx_want_tuple_element_t)
270# define __cpp_lib_tuple_element_t 201402L
271# endif
272# endif
273#endif /* !defined(__cpp_lib_tuple_element_t) && defined(__glibcxx_want_tuple_element_t) */
274#undef __glibcxx_want_tuple_element_t
275
276// from version.def line 241
277#if !defined(__cpp_lib_tuples_by_type)
278# if (__cplusplus >= 201402L)
279# define __glibcxx_tuples_by_type 201304L
280# if defined(__glibcxx_want_all) || defined(__glibcxx_want_tuples_by_type)
281# define __cpp_lib_tuples_by_type 201304L
282# endif
283# endif
284#endif /* !defined(__cpp_lib_tuples_by_type) && defined(__glibcxx_want_tuples_by_type) */
285#undef __glibcxx_want_tuples_by_type
286
287// from version.def line 249
288#if !defined(__cpp_lib_robust_nonmodifying_seq_ops)
289# if (__cplusplus >= 201402L)
290# define __glibcxx_robust_nonmodifying_seq_ops 201304L
291# if defined(__glibcxx_want_all) || defined(__glibcxx_want_robust_nonmodifying_seq_ops)
292# define __cpp_lib_robust_nonmodifying_seq_ops 201304L
293# endif
294# endif
295#endif /* !defined(__cpp_lib_robust_nonmodifying_seq_ops) && defined(__glibcxx_want_robust_nonmodifying_seq_ops) */
296#undef __glibcxx_want_robust_nonmodifying_seq_ops
297
298// from version.def line 257
299#if !defined(__cpp_lib_to_chars)
300# if (__cplusplus > 202302L) && (_GLIBCXX_FLOAT_IS_IEEE_BINARY32 && _GLIBCXX_DOUBLE_IS_IEEE_BINARY64 && __SIZE_WIDTH__ >= 32)
301# define __glibcxx_to_chars 202306L
302# if defined(__glibcxx_want_all) || defined(__glibcxx_want_to_chars)
303# define __cpp_lib_to_chars 202306L
304# endif
305# elif (__cplusplus >= 201402L) && (_GLIBCXX_FLOAT_IS_IEEE_BINARY32 && _GLIBCXX_DOUBLE_IS_IEEE_BINARY64 && __SIZE_WIDTH__ >= 32)
306# define __glibcxx_to_chars 201611L
307# if defined(__glibcxx_want_all) || defined(__glibcxx_want_to_chars)
308# define __cpp_lib_to_chars 201611L
309# endif
310# endif
311#endif /* !defined(__cpp_lib_to_chars) && defined(__glibcxx_want_to_chars) */
312#undef __glibcxx_want_to_chars
313
314// from version.def line 275
315#if !defined(__cpp_lib_chrono_udls)
316# if (__cplusplus >= 201402L) && _GLIBCXX_HOSTED
317# define __glibcxx_chrono_udls 201304L
318# if defined(__glibcxx_want_all) || defined(__glibcxx_want_chrono_udls)
319# define __cpp_lib_chrono_udls 201304L
320# endif
321# endif
322#endif /* !defined(__cpp_lib_chrono_udls) && defined(__glibcxx_want_chrono_udls) */
323#undef __glibcxx_want_chrono_udls
324
325// from version.def line 284
326#if !defined(__cpp_lib_complex_udls)
327# if (__cplusplus >= 201402L) && _GLIBCXX_HOSTED
328# define __glibcxx_complex_udls 201309L
329# if defined(__glibcxx_want_all) || defined(__glibcxx_want_complex_udls)
330# define __cpp_lib_complex_udls 201309L
331# endif
332# endif
333#endif /* !defined(__cpp_lib_complex_udls) && defined(__glibcxx_want_complex_udls) */
334#undef __glibcxx_want_complex_udls
335
336// from version.def line 293
337#if !defined(__cpp_lib_generic_associative_lookup)
338# if (__cplusplus >= 201402L) && _GLIBCXX_HOSTED
339# define __glibcxx_generic_associative_lookup 201304L
340# if defined(__glibcxx_want_all) || defined(__glibcxx_want_generic_associative_lookup)
341# define __cpp_lib_generic_associative_lookup 201304L
342# endif
343# endif
344#endif /* !defined(__cpp_lib_generic_associative_lookup) && defined(__glibcxx_want_generic_associative_lookup) */
345#undef __glibcxx_want_generic_associative_lookup
346
347// from version.def line 302
348#if !defined(__cpp_lib_make_unique)
349# if (__cplusplus >= 201402L) && _GLIBCXX_HOSTED
350# define __glibcxx_make_unique 201304L
351# if defined(__glibcxx_want_all) || defined(__glibcxx_want_make_unique)
352# define __cpp_lib_make_unique 201304L
353# endif
354# endif
355#endif /* !defined(__cpp_lib_make_unique) && defined(__glibcxx_want_make_unique) */
356#undef __glibcxx_want_make_unique
357
358// from version.def line 311
359#if !defined(__cpp_lib_quoted_string_io)
360# if (__cplusplus >= 201402L) && _GLIBCXX_HOSTED
361# define __glibcxx_quoted_string_io 201304L
362# if defined(__glibcxx_want_all) || defined(__glibcxx_want_quoted_string_io)
363# define __cpp_lib_quoted_string_io 201304L
364# endif
365# endif
366#endif /* !defined(__cpp_lib_quoted_string_io) && defined(__glibcxx_want_quoted_string_io) */
367#undef __glibcxx_want_quoted_string_io
368
369// from version.def line 320
370#if !defined(__cpp_lib_shared_timed_mutex)
371# if (__cplusplus >= 201402L) && defined(_GLIBCXX_HAS_GTHREADS) && _GLIBCXX_HOSTED
372# define __glibcxx_shared_timed_mutex 201402L
373# if defined(__glibcxx_want_all) || defined(__glibcxx_want_shared_timed_mutex)
374# define __cpp_lib_shared_timed_mutex 201402L
375# endif
376# endif
377#endif /* !defined(__cpp_lib_shared_timed_mutex) && defined(__glibcxx_want_shared_timed_mutex) */
378#undef __glibcxx_want_shared_timed_mutex
379
380// from version.def line 330
381#if !defined(__cpp_lib_string_udls)
382# if (__cplusplus >= 201402L) && _GLIBCXX_HOSTED
383# define __glibcxx_string_udls 201304L
384# if defined(__glibcxx_want_all) || defined(__glibcxx_want_string_udls)
385# define __cpp_lib_string_udls 201304L
386# endif
387# endif
388#endif /* !defined(__cpp_lib_string_udls) && defined(__glibcxx_want_string_udls) */
389#undef __glibcxx_want_string_udls
390
391// from version.def line 339
392#if !defined(__cpp_lib_addressof_constexpr)
393# if (__cplusplus >= 201703L)
394# define __glibcxx_addressof_constexpr 201603L
395# if defined(__glibcxx_want_all) || defined(__glibcxx_want_addressof_constexpr)
396# define __cpp_lib_addressof_constexpr 201603L
397# endif
398# endif
399#endif /* !defined(__cpp_lib_addressof_constexpr) && defined(__glibcxx_want_addressof_constexpr) */
400#undef __glibcxx_want_addressof_constexpr
401
402// from version.def line 349
403#if !defined(__cpp_lib_any)
404# if (__cplusplus >= 201703L)
405# define __glibcxx_any 201606L
406# if defined(__glibcxx_want_all) || defined(__glibcxx_want_any)
407# define __cpp_lib_any 201606L
408# endif
409# endif
410#endif /* !defined(__cpp_lib_any) && defined(__glibcxx_want_any) */
411#undef __glibcxx_want_any
412
413// from version.def line 357
414#if !defined(__cpp_lib_apply)
415# if (__cplusplus >= 201703L)
416# define __glibcxx_apply 201603L
417# if defined(__glibcxx_want_all) || defined(__glibcxx_want_apply)
418# define __cpp_lib_apply 201603L
419# endif
420# endif
421#endif /* !defined(__cpp_lib_apply) && defined(__glibcxx_want_apply) */
422#undef __glibcxx_want_apply
423
424// from version.def line 365
425#if !defined(__cpp_lib_as_const)
426# if (__cplusplus >= 201703L)
427# define __glibcxx_as_const 201510L
428# if defined(__glibcxx_want_all) || defined(__glibcxx_want_as_const)
429# define __cpp_lib_as_const 201510L
430# endif
431# endif
432#endif /* !defined(__cpp_lib_as_const) && defined(__glibcxx_want_as_const) */
433#undef __glibcxx_want_as_const
434
435// from version.def line 373
436#if !defined(__cpp_lib_atomic_is_always_lock_free)
437# if (__cplusplus >= 201703L)
438# define __glibcxx_atomic_is_always_lock_free 201603L
439# if defined(__glibcxx_want_all) || defined(__glibcxx_want_atomic_is_always_lock_free)
440# define __cpp_lib_atomic_is_always_lock_free 201603L
441# endif
442# endif
443#endif /* !defined(__cpp_lib_atomic_is_always_lock_free) && defined(__glibcxx_want_atomic_is_always_lock_free) */
444#undef __glibcxx_want_atomic_is_always_lock_free
445
446// from version.def line 381
447#if !defined(__cpp_lib_bool_constant)
448# if (__cplusplus >= 201703L)
449# define __glibcxx_bool_constant 201505L
450# if defined(__glibcxx_want_all) || defined(__glibcxx_want_bool_constant)
451# define __cpp_lib_bool_constant 201505L
452# endif
453# endif
454#endif /* !defined(__cpp_lib_bool_constant) && defined(__glibcxx_want_bool_constant) */
455#undef __glibcxx_want_bool_constant
456
457// from version.def line 389
458#if !defined(__cpp_lib_byte)
459# if (__cplusplus >= 201703L)
460# define __glibcxx_byte 201603L
461# if defined(__glibcxx_want_all) || defined(__glibcxx_want_byte)
462# define __cpp_lib_byte 201603L
463# endif
464# endif
465#endif /* !defined(__cpp_lib_byte) && defined(__glibcxx_want_byte) */
466#undef __glibcxx_want_byte
467
468// from version.def line 397
469#if !defined(__cpp_lib_has_unique_object_representations)
470# if (__cplusplus >= 201703L) && (defined(_GLIBCXX_HAVE_BUILTIN_HAS_UNIQ_OBJ_REP))
471# define __glibcxx_has_unique_object_representations 201606L
472# if defined(__glibcxx_want_all) || defined(__glibcxx_want_has_unique_object_representations)
473# define __cpp_lib_has_unique_object_representations 201606L
474# endif
475# endif
476#endif /* !defined(__cpp_lib_has_unique_object_representations) && defined(__glibcxx_want_has_unique_object_representations) */
477#undef __glibcxx_want_has_unique_object_representations
478
479// from version.def line 406
480#if !defined(__cpp_lib_hardware_interference_size)
481# if (__cplusplus >= 201703L) && (defined(__GCC_DESTRUCTIVE_SIZE))
482# define __glibcxx_hardware_interference_size 201703L
483# if defined(__glibcxx_want_all) || defined(__glibcxx_want_hardware_interference_size)
484# define __cpp_lib_hardware_interference_size 201703L
485# endif
486# endif
487#endif /* !defined(__cpp_lib_hardware_interference_size) && defined(__glibcxx_want_hardware_interference_size) */
488#undef __glibcxx_want_hardware_interference_size
489
490// from version.def line 415
491#if !defined(__cpp_lib_invoke)
492# if (__cplusplus >= 201703L)
493# define __glibcxx_invoke 201411L
494# if defined(__glibcxx_want_all) || defined(__glibcxx_want_invoke)
495# define __cpp_lib_invoke 201411L
496# endif
497# endif
498#endif /* !defined(__cpp_lib_invoke) && defined(__glibcxx_want_invoke) */
499#undef __glibcxx_want_invoke
500
501// from version.def line 423
502#if !defined(__cpp_lib_is_aggregate)
503# if (__cplusplus >= 201703L) && (defined(_GLIBCXX_HAVE_BUILTIN_IS_AGGREGATE))
504# define __glibcxx_is_aggregate 201703L
505# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_aggregate)
506# define __cpp_lib_is_aggregate 201703L
507# endif
508# endif
509#endif /* !defined(__cpp_lib_is_aggregate) && defined(__glibcxx_want_is_aggregate) */
510#undef __glibcxx_want_is_aggregate
511
512// from version.def line 432
513#if !defined(__cpp_lib_is_invocable)
514# if (__cplusplus >= 201703L)
515# define __glibcxx_is_invocable 201703L
516# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_invocable)
517# define __cpp_lib_is_invocable 201703L
518# endif
519# endif
520#endif /* !defined(__cpp_lib_is_invocable) && defined(__glibcxx_want_is_invocable) */
521#undef __glibcxx_want_is_invocable
522
523// from version.def line 440
524#if !defined(__cpp_lib_launder)
525# if (__cplusplus >= 201703L) && (defined(_GLIBCXX_HAVE_BUILTIN_LAUNDER))
526# define __glibcxx_launder 201606L
527# if defined(__glibcxx_want_all) || defined(__glibcxx_want_launder)
528# define __cpp_lib_launder 201606L
529# endif
530# endif
531#endif /* !defined(__cpp_lib_launder) && defined(__glibcxx_want_launder) */
532#undef __glibcxx_want_launder
533
534// from version.def line 449
535#if !defined(__cpp_lib_logical_traits)
536# if (__cplusplus >= 201703L)
537# define __glibcxx_logical_traits 201510L
538# if defined(__glibcxx_want_all) || defined(__glibcxx_want_logical_traits)
539# define __cpp_lib_logical_traits 201510L
540# endif
541# endif
542#endif /* !defined(__cpp_lib_logical_traits) && defined(__glibcxx_want_logical_traits) */
543#undef __glibcxx_want_logical_traits
544
545// from version.def line 457
546#if !defined(__cpp_lib_make_from_tuple)
547# if (__cplusplus >= 201703L)
548# define __glibcxx_make_from_tuple 201606L
549# if defined(__glibcxx_want_all) || defined(__glibcxx_want_make_from_tuple)
550# define __cpp_lib_make_from_tuple 201606L
551# endif
552# endif
553#endif /* !defined(__cpp_lib_make_from_tuple) && defined(__glibcxx_want_make_from_tuple) */
554#undef __glibcxx_want_make_from_tuple
555
556// from version.def line 465
557#if !defined(__cpp_lib_not_fn)
558# if (__cplusplus >= 201703L)
559# define __glibcxx_not_fn 201603L
560# if defined(__glibcxx_want_all) || defined(__glibcxx_want_not_fn)
561# define __cpp_lib_not_fn 201603L
562# endif
563# endif
564#endif /* !defined(__cpp_lib_not_fn) && defined(__glibcxx_want_not_fn) */
565#undef __glibcxx_want_not_fn
566
567// from version.def line 473
568#if !defined(__cpp_lib_type_trait_variable_templates)
569# if (__cplusplus >= 201703L)
570# define __glibcxx_type_trait_variable_templates 201510L
571# if defined(__glibcxx_want_all) || defined(__glibcxx_want_type_trait_variable_templates)
572# define __cpp_lib_type_trait_variable_templates 201510L
573# endif
574# endif
575#endif /* !defined(__cpp_lib_type_trait_variable_templates) && defined(__glibcxx_want_type_trait_variable_templates) */
576#undef __glibcxx_want_type_trait_variable_templates
577
578// from version.def line 481
579#if !defined(__cpp_lib_variant)
580# if (__cplusplus >= 202002L) && (__cpp_concepts >= 202002L && __cpp_constexpr >= 201811L)
581# define __glibcxx_variant 202106L
582# if defined(__glibcxx_want_all) || defined(__glibcxx_want_variant)
583# define __cpp_lib_variant 202106L
584# endif
585# elif (__cplusplus >= 201703L)
586# define __glibcxx_variant 202102L
587# if defined(__glibcxx_want_all) || defined(__glibcxx_want_variant)
588# define __cpp_lib_variant 202102L
589# endif
590# endif
591#endif /* !defined(__cpp_lib_variant) && defined(__glibcxx_want_variant) */
592#undef __glibcxx_want_variant
593
594// from version.def line 495
595#if !defined(__cpp_lib_lcm)
596# if (__cplusplus >= 201703L)
597# define __glibcxx_lcm 201606L
598# if defined(__glibcxx_want_all) || defined(__glibcxx_want_lcm)
599# define __cpp_lib_lcm 201606L
600# endif
601# endif
602#endif /* !defined(__cpp_lib_lcm) && defined(__glibcxx_want_lcm) */
603#undef __glibcxx_want_lcm
604
605// from version.def line 504
606#if !defined(__cpp_lib_gcd)
607# if (__cplusplus >= 201703L)
608# define __glibcxx_gcd 201606L
609# if defined(__glibcxx_want_all) || defined(__glibcxx_want_gcd)
610# define __cpp_lib_gcd 201606L
611# endif
612# endif
613#endif /* !defined(__cpp_lib_gcd) && defined(__glibcxx_want_gcd) */
614#undef __glibcxx_want_gcd
615
616// from version.def line 512
617#if !defined(__cpp_lib_gcd_lcm)
618# if (__cplusplus >= 201703L)
619# define __glibcxx_gcd_lcm 201606L
620# if defined(__glibcxx_want_all) || defined(__glibcxx_want_gcd_lcm)
621# define __cpp_lib_gcd_lcm 201606L
622# endif
623# endif
624#endif /* !defined(__cpp_lib_gcd_lcm) && defined(__glibcxx_want_gcd_lcm) */
625#undef __glibcxx_want_gcd_lcm
626
627// from version.def line 520
628#if !defined(__cpp_lib_raw_memory_algorithms)
629# if (__cplusplus >= 201703L)
630# define __glibcxx_raw_memory_algorithms 201606L
631# if defined(__glibcxx_want_all) || defined(__glibcxx_want_raw_memory_algorithms)
632# define __cpp_lib_raw_memory_algorithms 201606L
633# endif
634# endif
635#endif /* !defined(__cpp_lib_raw_memory_algorithms) && defined(__glibcxx_want_raw_memory_algorithms) */
636#undef __glibcxx_want_raw_memory_algorithms
637
638// from version.def line 528
639#if !defined(__cpp_lib_array_constexpr)
640# if (__cplusplus >= 202002L)
641# define __glibcxx_array_constexpr 201811L
642# if defined(__glibcxx_want_all) || defined(__glibcxx_want_array_constexpr)
643# define __cpp_lib_array_constexpr 201811L
644# endif
645# elif (__cplusplus >= 201703L)
646# define __glibcxx_array_constexpr 201803L
647# if defined(__glibcxx_want_all) || defined(__glibcxx_want_array_constexpr)
648# define __cpp_lib_array_constexpr 201803L
649# endif
650# endif
651#endif /* !defined(__cpp_lib_array_constexpr) && defined(__glibcxx_want_array_constexpr) */
652#undef __glibcxx_want_array_constexpr
653
654// from version.def line 540
655#if !defined(__cpp_lib_nonmember_container_access)
656# if (__cplusplus >= 201703L)
657# define __glibcxx_nonmember_container_access 201411L
658# if defined(__glibcxx_want_all) || defined(__glibcxx_want_nonmember_container_access)
659# define __cpp_lib_nonmember_container_access 201411L
660# endif
661# endif
662#endif /* !defined(__cpp_lib_nonmember_container_access) && defined(__glibcxx_want_nonmember_container_access) */
663#undef __glibcxx_want_nonmember_container_access
664
665// from version.def line 548
666#if !defined(__cpp_lib_clamp)
667# if (__cplusplus >= 201703L)
668# define __glibcxx_clamp 201603L
669# if defined(__glibcxx_want_all) || defined(__glibcxx_want_clamp)
670# define __cpp_lib_clamp 201603L
671# endif
672# endif
673#endif /* !defined(__cpp_lib_clamp) && defined(__glibcxx_want_clamp) */
674#undef __glibcxx_want_clamp
675
676// from version.def line 556
677#if !defined(__cpp_lib_sample)
678# if (__cplusplus >= 201703L)
679# define __glibcxx_sample 201603L
680# if defined(__glibcxx_want_all) || defined(__glibcxx_want_sample)
681# define __cpp_lib_sample 201603L
682# endif
683# endif
684#endif /* !defined(__cpp_lib_sample) && defined(__glibcxx_want_sample) */
685#undef __glibcxx_want_sample
686
687// from version.def line 564
688#if !defined(__cpp_lib_boyer_moore_searcher)
689# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
690# define __glibcxx_boyer_moore_searcher 201603L
691# if defined(__glibcxx_want_all) || defined(__glibcxx_want_boyer_moore_searcher)
692# define __cpp_lib_boyer_moore_searcher 201603L
693# endif
694# endif
695#endif /* !defined(__cpp_lib_boyer_moore_searcher) && defined(__glibcxx_want_boyer_moore_searcher) */
696#undef __glibcxx_want_boyer_moore_searcher
697
698// from version.def line 573
699#if !defined(__cpp_lib_chrono)
700# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
701# define __glibcxx_chrono 201907L
702# if defined(__glibcxx_want_all) || defined(__glibcxx_want_chrono)
703# define __cpp_lib_chrono 201907L
704# endif
705# elif (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
706# define __glibcxx_chrono 201611L
707# if defined(__glibcxx_want_all) || defined(__glibcxx_want_chrono)
708# define __cpp_lib_chrono 201611L
709# endif
710# endif
711#endif /* !defined(__cpp_lib_chrono) && defined(__glibcxx_want_chrono) */
712#undef __glibcxx_want_chrono
713
714// from version.def line 587
715#if !defined(__cpp_lib_execution)
716# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
717# define __glibcxx_execution 201902L
718# if defined(__glibcxx_want_all) || defined(__glibcxx_want_execution)
719# define __cpp_lib_execution 201902L
720# endif
721# endif
722#endif /* !defined(__cpp_lib_execution) && defined(__glibcxx_want_execution) */
723#undef __glibcxx_want_execution
724
725// from version.def line 596
726#if !defined(__cpp_lib_filesystem)
727# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
728# define __glibcxx_filesystem 201703L
729# if defined(__glibcxx_want_all) || defined(__glibcxx_want_filesystem)
730# define __cpp_lib_filesystem 201703L
731# endif
732# endif
733#endif /* !defined(__cpp_lib_filesystem) && defined(__glibcxx_want_filesystem) */
734#undef __glibcxx_want_filesystem
735
736// from version.def line 605
737#if !defined(__cpp_lib_hypot)
738# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
739# define __glibcxx_hypot 201603L
740# if defined(__glibcxx_want_all) || defined(__glibcxx_want_hypot)
741# define __cpp_lib_hypot 201603L
742# endif
743# endif
744#endif /* !defined(__cpp_lib_hypot) && defined(__glibcxx_want_hypot) */
745#undef __glibcxx_want_hypot
746
747// from version.def line 614
748#if !defined(__cpp_lib_map_try_emplace)
749# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
750# define __glibcxx_map_try_emplace 201411L
751# if defined(__glibcxx_want_all) || defined(__glibcxx_want_map_try_emplace)
752# define __cpp_lib_map_try_emplace 201411L
753# endif
754# endif
755#endif /* !defined(__cpp_lib_map_try_emplace) && defined(__glibcxx_want_map_try_emplace) */
756#undef __glibcxx_want_map_try_emplace
757
758// from version.def line 623
759#if !defined(__cpp_lib_math_special_functions)
760# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
761# define __glibcxx_math_special_functions 201603L
762# if defined(__glibcxx_want_all) || defined(__glibcxx_want_math_special_functions)
763# define __cpp_lib_math_special_functions 201603L
764# endif
765# endif
766#endif /* !defined(__cpp_lib_math_special_functions) && defined(__glibcxx_want_math_special_functions) */
767#undef __glibcxx_want_math_special_functions
768
769// from version.def line 632
770#if !defined(__cpp_lib_memory_resource)
771# if (__cplusplus >= 201703L) && defined(_GLIBCXX_HAS_GTHREADS) && _GLIBCXX_HOSTED
772# define __glibcxx_memory_resource 201603L
773# if defined(__glibcxx_want_all) || defined(__glibcxx_want_memory_resource)
774# define __cpp_lib_memory_resource 201603L
775# endif
776# elif (__cplusplus >= 201703L) && !defined(_GLIBCXX_HAS_GTHREADS) && _GLIBCXX_HOSTED
777# define __glibcxx_memory_resource 1L
778# if defined(__glibcxx_want_all) || defined(__glibcxx_want_memory_resource)
779# define __cpp_lib_memory_resource 1L
780# endif
781# endif
782#endif /* !defined(__cpp_lib_memory_resource) && defined(__glibcxx_want_memory_resource) */
783#undef __glibcxx_want_memory_resource
784
785// from version.def line 649
786#if !defined(__cpp_lib_node_extract)
787# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
788# define __glibcxx_node_extract 201606L
789# if defined(__glibcxx_want_all) || defined(__glibcxx_want_node_extract)
790# define __cpp_lib_node_extract 201606L
791# endif
792# endif
793#endif /* !defined(__cpp_lib_node_extract) && defined(__glibcxx_want_node_extract) */
794#undef __glibcxx_want_node_extract
795
796// from version.def line 658
797#if !defined(__cpp_lib_parallel_algorithm)
798# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
799# define __glibcxx_parallel_algorithm 201603L
800# if defined(__glibcxx_want_all) || defined(__glibcxx_want_parallel_algorithm)
801# define __cpp_lib_parallel_algorithm 201603L
802# endif
803# endif
804#endif /* !defined(__cpp_lib_parallel_algorithm) && defined(__glibcxx_want_parallel_algorithm) */
805#undef __glibcxx_want_parallel_algorithm
806
807// from version.def line 667
808#if !defined(__cpp_lib_scoped_lock)
809# if (__cplusplus >= 201703L) && defined(_GLIBCXX_HAS_GTHREADS) && _GLIBCXX_HOSTED
810# define __glibcxx_scoped_lock 201703L
811# if defined(__glibcxx_want_all) || defined(__glibcxx_want_scoped_lock)
812# define __cpp_lib_scoped_lock 201703L
813# endif
814# endif
815#endif /* !defined(__cpp_lib_scoped_lock) && defined(__glibcxx_want_scoped_lock) */
816#undef __glibcxx_want_scoped_lock
817
818// from version.def line 677
819#if !defined(__cpp_lib_shared_mutex)
820# if (__cplusplus >= 201703L) && defined(_GLIBCXX_HAS_GTHREADS) && _GLIBCXX_HOSTED
821# define __glibcxx_shared_mutex 201505L
822# if defined(__glibcxx_want_all) || defined(__glibcxx_want_shared_mutex)
823# define __cpp_lib_shared_mutex 201505L
824# endif
825# endif
826#endif /* !defined(__cpp_lib_shared_mutex) && defined(__glibcxx_want_shared_mutex) */
827#undef __glibcxx_want_shared_mutex
828
829// from version.def line 687
830#if !defined(__cpp_lib_shared_ptr_weak_type)
831# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
832# define __glibcxx_shared_ptr_weak_type 201606L
833# if defined(__glibcxx_want_all) || defined(__glibcxx_want_shared_ptr_weak_type)
834# define __cpp_lib_shared_ptr_weak_type 201606L
835# endif
836# endif
837#endif /* !defined(__cpp_lib_shared_ptr_weak_type) && defined(__glibcxx_want_shared_ptr_weak_type) */
838#undef __glibcxx_want_shared_ptr_weak_type
839
840// from version.def line 696
841#if !defined(__cpp_lib_string_view)
842# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
843# define __glibcxx_string_view 201803L
844# if defined(__glibcxx_want_all) || defined(__glibcxx_want_string_view)
845# define __cpp_lib_string_view 201803L
846# endif
847# endif
848#endif /* !defined(__cpp_lib_string_view) && defined(__glibcxx_want_string_view) */
849#undef __glibcxx_want_string_view
850
851// from version.def line 705
852#if !defined(__cpp_lib_unordered_map_try_emplace)
853# if (__cplusplus >= 201703L) && _GLIBCXX_HOSTED
854# define __glibcxx_unordered_map_try_emplace 201411L
855# if defined(__glibcxx_want_all) || defined(__glibcxx_want_unordered_map_try_emplace)
856# define __cpp_lib_unordered_map_try_emplace 201411L
857# endif
858# endif
859#endif /* !defined(__cpp_lib_unordered_map_try_emplace) && defined(__glibcxx_want_unordered_map_try_emplace) */
860#undef __glibcxx_want_unordered_map_try_emplace
861
862// from version.def line 714
863#if !defined(__cpp_lib_assume_aligned)
864# if (__cplusplus >= 202002L)
865# define __glibcxx_assume_aligned 201811L
866# if defined(__glibcxx_want_all) || defined(__glibcxx_want_assume_aligned)
867# define __cpp_lib_assume_aligned 201811L
868# endif
869# endif
870#endif /* !defined(__cpp_lib_assume_aligned) && defined(__glibcxx_want_assume_aligned) */
871#undef __glibcxx_want_assume_aligned
872
873// from version.def line 722
874#if !defined(__cpp_lib_atomic_flag_test)
875# if (__cplusplus >= 202002L)
876# define __glibcxx_atomic_flag_test 201907L
877# if defined(__glibcxx_want_all) || defined(__glibcxx_want_atomic_flag_test)
878# define __cpp_lib_atomic_flag_test 201907L
879# endif
880# endif
881#endif /* !defined(__cpp_lib_atomic_flag_test) && defined(__glibcxx_want_atomic_flag_test) */
882#undef __glibcxx_want_atomic_flag_test
883
884// from version.def line 730
885#if !defined(__cpp_lib_atomic_float)
886# if (__cplusplus >= 202002L)
887# define __glibcxx_atomic_float 201711L
888# if defined(__glibcxx_want_all) || defined(__glibcxx_want_atomic_float)
889# define __cpp_lib_atomic_float 201711L
890# endif
891# endif
892#endif /* !defined(__cpp_lib_atomic_float) && defined(__glibcxx_want_atomic_float) */
893#undef __glibcxx_want_atomic_float
894
895// from version.def line 738
896#if !defined(__cpp_lib_atomic_lock_free_type_aliases)
897# if (__cplusplus >= 202002L)
898# define __glibcxx_atomic_lock_free_type_aliases 201907L
899# if defined(__glibcxx_want_all) || defined(__glibcxx_want_atomic_lock_free_type_aliases)
900# define __cpp_lib_atomic_lock_free_type_aliases 201907L
901# endif
902# endif
903#endif /* !defined(__cpp_lib_atomic_lock_free_type_aliases) && defined(__glibcxx_want_atomic_lock_free_type_aliases) */
904#undef __glibcxx_want_atomic_lock_free_type_aliases
905
906// from version.def line 746
907#if !defined(__cpp_lib_atomic_ref)
908# if (__cplusplus >= 202002L)
909# define __glibcxx_atomic_ref 201806L
910# if defined(__glibcxx_want_all) || defined(__glibcxx_want_atomic_ref)
911# define __cpp_lib_atomic_ref 201806L
912# endif
913# endif
914#endif /* !defined(__cpp_lib_atomic_ref) && defined(__glibcxx_want_atomic_ref) */
915#undef __glibcxx_want_atomic_ref
916
917// from version.def line 754
918#if !defined(__cpp_lib_atomic_value_initialization)
919# if (__cplusplus >= 202002L)
920# define __glibcxx_atomic_value_initialization 201911L
921# if defined(__glibcxx_want_all) || defined(__glibcxx_want_atomic_value_initialization)
922# define __cpp_lib_atomic_value_initialization 201911L
923# endif
924# endif
925#endif /* !defined(__cpp_lib_atomic_value_initialization) && defined(__glibcxx_want_atomic_value_initialization) */
926#undef __glibcxx_want_atomic_value_initialization
927
928// from version.def line 762
929#if !defined(__cpp_lib_bind_front)
930# if (__cplusplus >= 202002L)
931# define __glibcxx_bind_front 201907L
932# if defined(__glibcxx_want_all) || defined(__glibcxx_want_bind_front)
933# define __cpp_lib_bind_front 201907L
934# endif
935# endif
936#endif /* !defined(__cpp_lib_bind_front) && defined(__glibcxx_want_bind_front) */
937#undef __glibcxx_want_bind_front
938
939// from version.def line 770
940#if !defined(__cpp_lib_bind_back)
941# if (__cplusplus >= 202100L) && (__cpp_explicit_this_parameter)
942# define __glibcxx_bind_back 202202L
943# if defined(__glibcxx_want_all) || defined(__glibcxx_want_bind_back)
944# define __cpp_lib_bind_back 202202L
945# endif
946# endif
947#endif /* !defined(__cpp_lib_bind_back) && defined(__glibcxx_want_bind_back) */
948#undef __glibcxx_want_bind_back
949
950// from version.def line 779
951#if !defined(__cpp_lib_starts_ends_with)
952# if (__cplusplus >= 202002L)
953# define __glibcxx_starts_ends_with 201711L
954# if defined(__glibcxx_want_all) || defined(__glibcxx_want_starts_ends_with)
955# define __cpp_lib_starts_ends_with 201711L
956# endif
957# endif
958#endif /* !defined(__cpp_lib_starts_ends_with) && defined(__glibcxx_want_starts_ends_with) */
959#undef __glibcxx_want_starts_ends_with
960
961// from version.def line 787
962#if !defined(__cpp_lib_bit_cast)
963# if (__cplusplus >= 202002L) && (__has_builtin(__builtin_bit_cast))
964# define __glibcxx_bit_cast 201806L
965# if defined(__glibcxx_want_all) || defined(__glibcxx_want_bit_cast)
966# define __cpp_lib_bit_cast 201806L
967# endif
968# endif
969#endif /* !defined(__cpp_lib_bit_cast) && defined(__glibcxx_want_bit_cast) */
970#undef __glibcxx_want_bit_cast
971
972// from version.def line 796
973#if !defined(__cpp_lib_bitops)
974# if (__cplusplus >= 202002L)
975# define __glibcxx_bitops 201907L
976# if defined(__glibcxx_want_all) || defined(__glibcxx_want_bitops)
977# define __cpp_lib_bitops 201907L
978# endif
979# endif
980#endif /* !defined(__cpp_lib_bitops) && defined(__glibcxx_want_bitops) */
981#undef __glibcxx_want_bitops
982
983// from version.def line 804
984#if !defined(__cpp_lib_bounded_array_traits)
985# if (__cplusplus >= 202002L)
986# define __glibcxx_bounded_array_traits 201902L
987# if defined(__glibcxx_want_all) || defined(__glibcxx_want_bounded_array_traits)
988# define __cpp_lib_bounded_array_traits 201902L
989# endif
990# endif
991#endif /* !defined(__cpp_lib_bounded_array_traits) && defined(__glibcxx_want_bounded_array_traits) */
992#undef __glibcxx_want_bounded_array_traits
993
994// from version.def line 812
995#if !defined(__cpp_lib_concepts)
996# if (__cplusplus >= 202002L) && (__cpp_concepts >= 201907L)
997# define __glibcxx_concepts 202002L
998# if defined(__glibcxx_want_all) || defined(__glibcxx_want_concepts)
999# define __cpp_lib_concepts 202002L
1000# endif
1001# endif
1002#endif /* !defined(__cpp_lib_concepts) && defined(__glibcxx_want_concepts) */
1003#undef __glibcxx_want_concepts
1004
1005// from version.def line 822
1006#if !defined(__cpp_lib_optional)
1007# if (__cplusplus >= 202100L) && (__glibcxx_concepts)
1008# define __glibcxx_optional 202110L
1009# if defined(__glibcxx_want_all) || defined(__glibcxx_want_optional)
1010# define __cpp_lib_optional 202110L
1011# endif
1012# elif (__cplusplus >= 202002L)
1013# define __glibcxx_optional 202106L
1014# if defined(__glibcxx_want_all) || defined(__glibcxx_want_optional)
1015# define __cpp_lib_optional 202106L
1016# endif
1017# elif (__cplusplus >= 201703L)
1018# define __glibcxx_optional 201606L
1019# if defined(__glibcxx_want_all) || defined(__glibcxx_want_optional)
1020# define __cpp_lib_optional 201606L
1021# endif
1022# endif
1023#endif /* !defined(__cpp_lib_optional) && defined(__glibcxx_want_optional) */
1024#undef __glibcxx_want_optional
1025
1026// from version.def line 839
1027#if !defined(__cpp_lib_destroying_delete)
1028# if (__cplusplus >= 202002L) && (__cpp_impl_destroying_delete)
1029# define __glibcxx_destroying_delete 201806L
1030# if defined(__glibcxx_want_all) || defined(__glibcxx_want_destroying_delete)
1031# define __cpp_lib_destroying_delete 201806L
1032# endif
1033# endif
1034#endif /* !defined(__cpp_lib_destroying_delete) && defined(__glibcxx_want_destroying_delete) */
1035#undef __glibcxx_want_destroying_delete
1036
1037// from version.def line 848
1038#if !defined(__cpp_lib_constexpr_string_view)
1039# if (__cplusplus >= 202002L)
1040# define __glibcxx_constexpr_string_view 201811L
1041# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_string_view)
1042# define __cpp_lib_constexpr_string_view 201811L
1043# endif
1044# endif
1045#endif /* !defined(__cpp_lib_constexpr_string_view) && defined(__glibcxx_want_constexpr_string_view) */
1046#undef __glibcxx_want_constexpr_string_view
1047
1048// from version.def line 856
1049#if !defined(__cpp_lib_endian)
1050# if (__cplusplus >= 202002L)
1051# define __glibcxx_endian 201907L
1052# if defined(__glibcxx_want_all) || defined(__glibcxx_want_endian)
1053# define __cpp_lib_endian 201907L
1054# endif
1055# endif
1056#endif /* !defined(__cpp_lib_endian) && defined(__glibcxx_want_endian) */
1057#undef __glibcxx_want_endian
1058
1059// from version.def line 864
1060#if !defined(__cpp_lib_int_pow2)
1061# if (__cplusplus >= 202002L)
1062# define __glibcxx_int_pow2 202002L
1063# if defined(__glibcxx_want_all) || defined(__glibcxx_want_int_pow2)
1064# define __cpp_lib_int_pow2 202002L
1065# endif
1066# endif
1067#endif /* !defined(__cpp_lib_int_pow2) && defined(__glibcxx_want_int_pow2) */
1068#undef __glibcxx_want_int_pow2
1069
1070// from version.def line 872
1071#if !defined(__cpp_lib_integer_comparison_functions)
1072# if (__cplusplus >= 202002L)
1073# define __glibcxx_integer_comparison_functions 202002L
1074# if defined(__glibcxx_want_all) || defined(__glibcxx_want_integer_comparison_functions)
1075# define __cpp_lib_integer_comparison_functions 202002L
1076# endif
1077# endif
1078#endif /* !defined(__cpp_lib_integer_comparison_functions) && defined(__glibcxx_want_integer_comparison_functions) */
1079#undef __glibcxx_want_integer_comparison_functions
1080
1081// from version.def line 880
1082#if !defined(__cpp_lib_is_constant_evaluated)
1083# if (__cplusplus >= 202002L) && (defined(_GLIBCXX_HAVE_IS_CONSTANT_EVALUATED))
1084# define __glibcxx_is_constant_evaluated 201811L
1085# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_constant_evaluated)
1086# define __cpp_lib_is_constant_evaluated 201811L
1087# endif
1088# endif
1089#endif /* !defined(__cpp_lib_is_constant_evaluated) && defined(__glibcxx_want_is_constant_evaluated) */
1090#undef __glibcxx_want_is_constant_evaluated
1091
1092// from version.def line 890
1093#if !defined(__cpp_lib_constexpr_char_traits)
1094# if (__cplusplus >= 202002L) && (defined(__glibcxx_is_constant_evaluated))
1095# define __glibcxx_constexpr_char_traits 201811L
1096# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_char_traits)
1097# define __cpp_lib_constexpr_char_traits 201811L
1098# endif
1099# elif (__cplusplus >= 201703L) && (_GLIBCXX_HAVE_IS_CONSTANT_EVALUATED)
1100# define __glibcxx_constexpr_char_traits 201611L
1101# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_char_traits)
1102# define __cpp_lib_constexpr_char_traits 201611L
1103# endif
1104# endif
1105#endif /* !defined(__cpp_lib_constexpr_char_traits) && defined(__glibcxx_want_constexpr_char_traits) */
1106#undef __glibcxx_want_constexpr_char_traits
1107
1108// from version.def line 906
1109#if !defined(__cpp_lib_is_layout_compatible)
1110# if (__cplusplus >= 202002L) && (__has_builtin(__is_layout_compatible) && __has_builtin(__builtin_is_corresponding_member))
1111# define __glibcxx_is_layout_compatible 201907L
1112# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_layout_compatible)
1113# define __cpp_lib_is_layout_compatible 201907L
1114# endif
1115# endif
1116#endif /* !defined(__cpp_lib_is_layout_compatible) && defined(__glibcxx_want_is_layout_compatible) */
1117#undef __glibcxx_want_is_layout_compatible
1118
1119// from version.def line 916
1120#if !defined(__cpp_lib_is_nothrow_convertible)
1121# if (__cplusplus >= 202002L)
1122# define __glibcxx_is_nothrow_convertible 201806L
1123# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_nothrow_convertible)
1124# define __cpp_lib_is_nothrow_convertible 201806L
1125# endif
1126# endif
1127#endif /* !defined(__cpp_lib_is_nothrow_convertible) && defined(__glibcxx_want_is_nothrow_convertible) */
1128#undef __glibcxx_want_is_nothrow_convertible
1129
1130// from version.def line 924
1131#if !defined(__cpp_lib_is_pointer_interconvertible)
1132# if (__cplusplus >= 202002L) && (__has_builtin(__is_pointer_interconvertible_base_of) && __has_builtin(__builtin_is_pointer_interconvertible_with_class))
1133# define __glibcxx_is_pointer_interconvertible 201907L
1134# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_pointer_interconvertible)
1135# define __cpp_lib_is_pointer_interconvertible 201907L
1136# endif
1137# endif
1138#endif /* !defined(__cpp_lib_is_pointer_interconvertible) && defined(__glibcxx_want_is_pointer_interconvertible) */
1139#undef __glibcxx_want_is_pointer_interconvertible
1140
1141// from version.def line 935
1142#if !defined(__cpp_lib_math_constants)
1143# if (__cplusplus >= 202002L)
1144# define __glibcxx_math_constants 201907L
1145# if defined(__glibcxx_want_all) || defined(__glibcxx_want_math_constants)
1146# define __cpp_lib_math_constants 201907L
1147# endif
1148# endif
1149#endif /* !defined(__cpp_lib_math_constants) && defined(__glibcxx_want_math_constants) */
1150#undef __glibcxx_want_math_constants
1151
1152// from version.def line 943
1153#if !defined(__cpp_lib_make_obj_using_allocator)
1154# if (__cplusplus >= 202002L) && (__cpp_concepts)
1155# define __glibcxx_make_obj_using_allocator 201811L
1156# if defined(__glibcxx_want_all) || defined(__glibcxx_want_make_obj_using_allocator)
1157# define __cpp_lib_make_obj_using_allocator 201811L
1158# endif
1159# endif
1160#endif /* !defined(__cpp_lib_make_obj_using_allocator) && defined(__glibcxx_want_make_obj_using_allocator) */
1161#undef __glibcxx_want_make_obj_using_allocator
1162
1163// from version.def line 953
1164#if !defined(__cpp_lib_remove_cvref)
1165# if (__cplusplus >= 202002L)
1166# define __glibcxx_remove_cvref 201711L
1167# if defined(__glibcxx_want_all) || defined(__glibcxx_want_remove_cvref)
1168# define __cpp_lib_remove_cvref 201711L
1169# endif
1170# endif
1171#endif /* !defined(__cpp_lib_remove_cvref) && defined(__glibcxx_want_remove_cvref) */
1172#undef __glibcxx_want_remove_cvref
1173
1174// from version.def line 961
1175#if !defined(__cpp_lib_source_location)
1176# if (__cplusplus >= 202002L) && (__has_builtin(__builtin_source_location))
1177# define __glibcxx_source_location 201907L
1178# if defined(__glibcxx_want_all) || defined(__glibcxx_want_source_location)
1179# define __cpp_lib_source_location 201907L
1180# endif
1181# endif
1182#endif /* !defined(__cpp_lib_source_location) && defined(__glibcxx_want_source_location) */
1183#undef __glibcxx_want_source_location
1184
1185// from version.def line 970
1186#if !defined(__cpp_lib_span)
1187# if (__cplusplus > 202302L) && (__glibcxx_concepts)
1188# define __glibcxx_span 202311L
1189# if defined(__glibcxx_want_all) || defined(__glibcxx_want_span)
1190# define __cpp_lib_span 202311L
1191# endif
1192# elif (__cplusplus >= 202002L) && (__glibcxx_concepts)
1193# define __glibcxx_span 202002L
1194# if defined(__glibcxx_want_all) || defined(__glibcxx_want_span)
1195# define __cpp_lib_span 202002L
1196# endif
1197# endif
1198#endif /* !defined(__cpp_lib_span) && defined(__glibcxx_want_span) */
1199#undef __glibcxx_want_span
1200
1201// from version.def line 984
1202#if !defined(__cpp_lib_ssize)
1203# if (__cplusplus >= 202002L)
1204# define __glibcxx_ssize 201902L
1205# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ssize)
1206# define __cpp_lib_ssize 201902L
1207# endif
1208# endif
1209#endif /* !defined(__cpp_lib_ssize) && defined(__glibcxx_want_ssize) */
1210#undef __glibcxx_want_ssize
1211
1212// from version.def line 992
1213#if !defined(__cpp_lib_three_way_comparison)
1214# if (__cplusplus >= 202002L) && (__cpp_impl_three_way_comparison >= 201907L && __glibcxx_concepts)
1215# define __glibcxx_three_way_comparison 201907L
1216# if defined(__glibcxx_want_all) || defined(__glibcxx_want_three_way_comparison)
1217# define __cpp_lib_three_way_comparison 201907L
1218# endif
1219# endif
1220#endif /* !defined(__cpp_lib_three_way_comparison) && defined(__glibcxx_want_three_way_comparison) */
1221#undef __glibcxx_want_three_way_comparison
1222
1223// from version.def line 1002
1224#if !defined(__cpp_lib_to_address)
1225# if (__cplusplus >= 202002L)
1226# define __glibcxx_to_address 201711L
1227# if defined(__glibcxx_want_all) || defined(__glibcxx_want_to_address)
1228# define __cpp_lib_to_address 201711L
1229# endif
1230# endif
1231#endif /* !defined(__cpp_lib_to_address) && defined(__glibcxx_want_to_address) */
1232#undef __glibcxx_want_to_address
1233
1234// from version.def line 1010
1235#if !defined(__cpp_lib_to_array)
1236# if (__cplusplus >= 202002L) && (__cpp_generic_lambdas >= 201707L)
1237# define __glibcxx_to_array 201907L
1238# if defined(__glibcxx_want_all) || defined(__glibcxx_want_to_array)
1239# define __cpp_lib_to_array 201907L
1240# endif
1241# endif
1242#endif /* !defined(__cpp_lib_to_array) && defined(__glibcxx_want_to_array) */
1243#undef __glibcxx_want_to_array
1244
1245// from version.def line 1019
1246#if !defined(__cpp_lib_type_identity)
1247# if (__cplusplus >= 202002L)
1248# define __glibcxx_type_identity 201806L
1249# if defined(__glibcxx_want_all) || defined(__glibcxx_want_type_identity)
1250# define __cpp_lib_type_identity 201806L
1251# endif
1252# endif
1253#endif /* !defined(__cpp_lib_type_identity) && defined(__glibcxx_want_type_identity) */
1254#undef __glibcxx_want_type_identity
1255
1256// from version.def line 1027
1257#if !defined(__cpp_lib_unwrap_ref)
1258# if (__cplusplus >= 202002L)
1259# define __glibcxx_unwrap_ref 201811L
1260# if defined(__glibcxx_want_all) || defined(__glibcxx_want_unwrap_ref)
1261# define __cpp_lib_unwrap_ref 201811L
1262# endif
1263# endif
1264#endif /* !defined(__cpp_lib_unwrap_ref) && defined(__glibcxx_want_unwrap_ref) */
1265#undef __glibcxx_want_unwrap_ref
1266
1267// from version.def line 1035
1268#if !defined(__cpp_lib_constexpr_iterator)
1269# if (__cplusplus >= 202002L)
1270# define __glibcxx_constexpr_iterator 201811L
1271# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_iterator)
1272# define __cpp_lib_constexpr_iterator 201811L
1273# endif
1274# endif
1275#endif /* !defined(__cpp_lib_constexpr_iterator) && defined(__glibcxx_want_constexpr_iterator) */
1276#undef __glibcxx_want_constexpr_iterator
1277
1278// from version.def line 1043
1279#if !defined(__cpp_lib_interpolate)
1280# if (__cplusplus >= 202002L)
1281# define __glibcxx_interpolate 201902L
1282# if defined(__glibcxx_want_all) || defined(__glibcxx_want_interpolate)
1283# define __cpp_lib_interpolate 201902L
1284# endif
1285# endif
1286#endif /* !defined(__cpp_lib_interpolate) && defined(__glibcxx_want_interpolate) */
1287#undef __glibcxx_want_interpolate
1288
1289// from version.def line 1051
1290#if !defined(__cpp_lib_constexpr_utility)
1291# if (__cplusplus >= 202002L)
1292# define __glibcxx_constexpr_utility 201811L
1293# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_utility)
1294# define __cpp_lib_constexpr_utility 201811L
1295# endif
1296# endif
1297#endif /* !defined(__cpp_lib_constexpr_utility) && defined(__glibcxx_want_constexpr_utility) */
1298#undef __glibcxx_want_constexpr_utility
1299
1300// from version.def line 1059
1301#if !defined(__cpp_lib_shift)
1302# if (__cplusplus >= 202002L)
1303# define __glibcxx_shift 201806L
1304# if defined(__glibcxx_want_all) || defined(__glibcxx_want_shift)
1305# define __cpp_lib_shift 201806L
1306# endif
1307# endif
1308#endif /* !defined(__cpp_lib_shift) && defined(__glibcxx_want_shift) */
1309#undef __glibcxx_want_shift
1310
1311// from version.def line 1067
1312#if !defined(__cpp_lib_ranges)
1313# if (__cplusplus >= 202100L) && (__glibcxx_concepts)
1314# define __glibcxx_ranges 202211L
1315# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges)
1316# define __cpp_lib_ranges 202211L
1317# endif
1318# elif (__cplusplus >= 202002L) && (__glibcxx_concepts)
1319# define __glibcxx_ranges 202110L
1320# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges)
1321# define __cpp_lib_ranges 202110L
1322# endif
1323# endif
1324#endif /* !defined(__cpp_lib_ranges) && defined(__glibcxx_want_ranges) */
1325#undef __glibcxx_want_ranges
1326
1327// from version.def line 1081
1328#if !defined(__cpp_lib_constexpr_numeric)
1329# if (__cplusplus >= 202002L)
1330# define __glibcxx_constexpr_numeric 201911L
1331# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_numeric)
1332# define __cpp_lib_constexpr_numeric 201911L
1333# endif
1334# endif
1335#endif /* !defined(__cpp_lib_constexpr_numeric) && defined(__glibcxx_want_constexpr_numeric) */
1336#undef __glibcxx_want_constexpr_numeric
1337
1338// from version.def line 1089
1339#if !defined(__cpp_lib_constexpr_functional)
1340# if (__cplusplus >= 202002L)
1341# define __glibcxx_constexpr_functional 201907L
1342# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_functional)
1343# define __cpp_lib_constexpr_functional 201907L
1344# endif
1345# endif
1346#endif /* !defined(__cpp_lib_constexpr_functional) && defined(__glibcxx_want_constexpr_functional) */
1347#undef __glibcxx_want_constexpr_functional
1348
1349// from version.def line 1097
1350#if !defined(__cpp_lib_constexpr_algorithms)
1351# if (__cplusplus >= 202002L)
1352# define __glibcxx_constexpr_algorithms 201806L
1353# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_algorithms)
1354# define __cpp_lib_constexpr_algorithms 201806L
1355# endif
1356# endif
1357#endif /* !defined(__cpp_lib_constexpr_algorithms) && defined(__glibcxx_want_constexpr_algorithms) */
1358#undef __glibcxx_want_constexpr_algorithms
1359
1360// from version.def line 1105
1361#if !defined(__cpp_lib_constexpr_tuple)
1362# if (__cplusplus >= 202002L)
1363# define __glibcxx_constexpr_tuple 201811L
1364# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_tuple)
1365# define __cpp_lib_constexpr_tuple 201811L
1366# endif
1367# endif
1368#endif /* !defined(__cpp_lib_constexpr_tuple) && defined(__glibcxx_want_constexpr_tuple) */
1369#undef __glibcxx_want_constexpr_tuple
1370
1371// from version.def line 1113
1372#if !defined(__cpp_lib_constexpr_memory)
1373# if (__cplusplus >= 202100L) && (__cpp_constexpr_dynamic_alloc)
1374# define __glibcxx_constexpr_memory 202202L
1375# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_memory)
1376# define __cpp_lib_constexpr_memory 202202L
1377# endif
1378# elif (__cplusplus >= 202002L)
1379# define __glibcxx_constexpr_memory 201811L
1380# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_memory)
1381# define __cpp_lib_constexpr_memory 201811L
1382# endif
1383# endif
1384#endif /* !defined(__cpp_lib_constexpr_memory) && defined(__glibcxx_want_constexpr_memory) */
1385#undef __glibcxx_want_constexpr_memory
1386
1387// from version.def line 1126
1388#if !defined(__cpp_lib_atomic_shared_ptr)
1389# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1390# define __glibcxx_atomic_shared_ptr 201711L
1391# if defined(__glibcxx_want_all) || defined(__glibcxx_want_atomic_shared_ptr)
1392# define __cpp_lib_atomic_shared_ptr 201711L
1393# endif
1394# endif
1395#endif /* !defined(__cpp_lib_atomic_shared_ptr) && defined(__glibcxx_want_atomic_shared_ptr) */
1396#undef __glibcxx_want_atomic_shared_ptr
1397
1398// from version.def line 1135
1399#if !defined(__cpp_lib_atomic_wait)
1400# if (__cplusplus >= 202002L) && defined(_GLIBCXX_HAS_GTHREADS) && _GLIBCXX_HOSTED
1401# define __glibcxx_atomic_wait 201907L
1402# if defined(__glibcxx_want_all) || defined(__glibcxx_want_atomic_wait)
1403# define __cpp_lib_atomic_wait 201907L
1404# endif
1405# elif (__cplusplus >= 202002L) && !defined(_GLIBCXX_HAS_GTHREADS) && _GLIBCXX_HOSTED && (defined(_GLIBCXX_HAVE_LINUX_FUTEX))
1406# define __glibcxx_atomic_wait 201907L
1407# if defined(__glibcxx_want_all) || defined(__glibcxx_want_atomic_wait)
1408# define __cpp_lib_atomic_wait 201907L
1409# endif
1410# endif
1411#endif /* !defined(__cpp_lib_atomic_wait) && defined(__glibcxx_want_atomic_wait) */
1412#undef __glibcxx_want_atomic_wait
1413
1414// from version.def line 1153
1415#if !defined(__cpp_lib_barrier)
1416# if (__cplusplus >= 202002L) && (__cpp_aligned_new && __glibcxx_atomic_wait)
1417# define __glibcxx_barrier 201907L
1418# if defined(__glibcxx_want_all) || defined(__glibcxx_want_barrier)
1419# define __cpp_lib_barrier 201907L
1420# endif
1421# endif
1422#endif /* !defined(__cpp_lib_barrier) && defined(__glibcxx_want_barrier) */
1423#undef __glibcxx_want_barrier
1424
1425// from version.def line 1170
1426#if !defined(__cpp_lib_format)
1427# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1428# define __glibcxx_format 202110L
1429# if defined(__glibcxx_want_all) || defined(__glibcxx_want_format)
1430# define __cpp_lib_format 202110L
1431# endif
1432# endif
1433#endif /* !defined(__cpp_lib_format) && defined(__glibcxx_want_format) */
1434#undef __glibcxx_want_format
1435
1436// from version.def line 1179
1437#if !defined(__cpp_lib_format_uchar)
1438# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1439# define __glibcxx_format_uchar 202311L
1440# if defined(__glibcxx_want_all) || defined(__glibcxx_want_format_uchar)
1441# define __cpp_lib_format_uchar 202311L
1442# endif
1443# endif
1444#endif /* !defined(__cpp_lib_format_uchar) && defined(__glibcxx_want_format_uchar) */
1445#undef __glibcxx_want_format_uchar
1446
1447// from version.def line 1190
1448#if !defined(__cpp_lib_constexpr_complex)
1449# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1450# define __glibcxx_constexpr_complex 201711L
1451# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_complex)
1452# define __cpp_lib_constexpr_complex 201711L
1453# endif
1454# endif
1455#endif /* !defined(__cpp_lib_constexpr_complex) && defined(__glibcxx_want_constexpr_complex) */
1456#undef __glibcxx_want_constexpr_complex
1457
1458// from version.def line 1199
1459#if !defined(__cpp_lib_constexpr_dynamic_alloc)
1460# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1461# define __glibcxx_constexpr_dynamic_alloc 201907L
1462# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_dynamic_alloc)
1463# define __cpp_lib_constexpr_dynamic_alloc 201907L
1464# endif
1465# endif
1466#endif /* !defined(__cpp_lib_constexpr_dynamic_alloc) && defined(__glibcxx_want_constexpr_dynamic_alloc) */
1467#undef __glibcxx_want_constexpr_dynamic_alloc
1468
1469// from version.def line 1208
1470#if !defined(__cpp_lib_constexpr_string)
1471# if (__cplusplus >= 202002L) && _GLIBCXX_USE_CXX11_ABI && _GLIBCXX_HOSTED && (defined(__glibcxx_is_constant_evaluated))
1472# define __glibcxx_constexpr_string 201907L
1473# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_string)
1474# define __cpp_lib_constexpr_string 201907L
1475# endif
1476# elif (__cplusplus >= 202002L) && !_GLIBCXX_USE_CXX11_ABI && _GLIBCXX_HOSTED && (defined(__glibcxx_is_constant_evaluated))
1477# define __glibcxx_constexpr_string 201811L
1478# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_string)
1479# define __cpp_lib_constexpr_string 201811L
1480# endif
1481# elif (__cplusplus >= 201703L) && _GLIBCXX_HOSTED && (_GLIBCXX_HAVE_IS_CONSTANT_EVALUATED)
1482# define __glibcxx_constexpr_string 201611L
1483# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_string)
1484# define __cpp_lib_constexpr_string 201611L
1485# endif
1486# endif
1487#endif /* !defined(__cpp_lib_constexpr_string) && defined(__glibcxx_want_constexpr_string) */
1488#undef __glibcxx_want_constexpr_string
1489
1490// from version.def line 1232
1491#if !defined(__cpp_lib_constexpr_vector)
1492# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1493# define __glibcxx_constexpr_vector 201907L
1494# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_vector)
1495# define __cpp_lib_constexpr_vector 201907L
1496# endif
1497# endif
1498#endif /* !defined(__cpp_lib_constexpr_vector) && defined(__glibcxx_want_constexpr_vector) */
1499#undef __glibcxx_want_constexpr_vector
1500
1501// from version.def line 1241
1502#if !defined(__cpp_lib_erase_if)
1503# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1504# define __glibcxx_erase_if 202002L
1505# if defined(__glibcxx_want_all) || defined(__glibcxx_want_erase_if)
1506# define __cpp_lib_erase_if 202002L
1507# endif
1508# endif
1509#endif /* !defined(__cpp_lib_erase_if) && defined(__glibcxx_want_erase_if) */
1510#undef __glibcxx_want_erase_if
1511
1512// from version.def line 1250
1513#if !defined(__cpp_lib_generic_unordered_lookup)
1514# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1515# define __glibcxx_generic_unordered_lookup 201811L
1516# if defined(__glibcxx_want_all) || defined(__glibcxx_want_generic_unordered_lookup)
1517# define __cpp_lib_generic_unordered_lookup 201811L
1518# endif
1519# endif
1520#endif /* !defined(__cpp_lib_generic_unordered_lookup) && defined(__glibcxx_want_generic_unordered_lookup) */
1521#undef __glibcxx_want_generic_unordered_lookup
1522
1523// from version.def line 1259
1524#if !defined(__cpp_lib_jthread)
1525# if (__cplusplus >= 202002L) && defined(_GLIBCXX_HAS_GTHREADS) && _GLIBCXX_HOSTED
1526# define __glibcxx_jthread 201911L
1527# if defined(__glibcxx_want_all) || defined(__glibcxx_want_jthread)
1528# define __cpp_lib_jthread 201911L
1529# endif
1530# endif
1531#endif /* !defined(__cpp_lib_jthread) && defined(__glibcxx_want_jthread) */
1532#undef __glibcxx_want_jthread
1533
1534// from version.def line 1269
1535#if !defined(__cpp_lib_latch)
1536# if (__cplusplus >= 202002L) && (__glibcxx_atomic_wait)
1537# define __glibcxx_latch 201907L
1538# if defined(__glibcxx_want_all) || defined(__glibcxx_want_latch)
1539# define __cpp_lib_latch 201907L
1540# endif
1541# endif
1542#endif /* !defined(__cpp_lib_latch) && defined(__glibcxx_want_latch) */
1543#undef __glibcxx_want_latch
1544
1545// from version.def line 1278
1546#if !defined(__cpp_lib_list_remove_return_type)
1547# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1548# define __glibcxx_list_remove_return_type 201806L
1549# if defined(__glibcxx_want_all) || defined(__glibcxx_want_list_remove_return_type)
1550# define __cpp_lib_list_remove_return_type 201806L
1551# endif
1552# endif
1553#endif /* !defined(__cpp_lib_list_remove_return_type) && defined(__glibcxx_want_list_remove_return_type) */
1554#undef __glibcxx_want_list_remove_return_type
1555
1556// from version.def line 1287
1557#if !defined(__cpp_lib_polymorphic_allocator)
1558# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1559# define __glibcxx_polymorphic_allocator 201902L
1560# if defined(__glibcxx_want_all) || defined(__glibcxx_want_polymorphic_allocator)
1561# define __cpp_lib_polymorphic_allocator 201902L
1562# endif
1563# endif
1564#endif /* !defined(__cpp_lib_polymorphic_allocator) && defined(__glibcxx_want_polymorphic_allocator) */
1565#undef __glibcxx_want_polymorphic_allocator
1566
1567// from version.def line 1296
1568#if !defined(__cpp_lib_move_iterator_concept)
1569# if (__cplusplus >= 202002L) && (__glibcxx_concepts)
1570# define __glibcxx_move_iterator_concept 202207L
1571# if defined(__glibcxx_want_all) || defined(__glibcxx_want_move_iterator_concept)
1572# define __cpp_lib_move_iterator_concept 202207L
1573# endif
1574# endif
1575#endif /* !defined(__cpp_lib_move_iterator_concept) && defined(__glibcxx_want_move_iterator_concept) */
1576#undef __glibcxx_want_move_iterator_concept
1577
1578// from version.def line 1306
1579#if !defined(__cpp_lib_semaphore)
1580# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED && (__glibcxx_atomic_wait || _GLIBCXX_HAVE_POSIX_SEMAPHORE)
1581# define __glibcxx_semaphore 201907L
1582# if defined(__glibcxx_want_all) || defined(__glibcxx_want_semaphore)
1583# define __cpp_lib_semaphore 201907L
1584# endif
1585# endif
1586#endif /* !defined(__cpp_lib_semaphore) && defined(__glibcxx_want_semaphore) */
1587#undef __glibcxx_want_semaphore
1588
1589// from version.def line 1316
1590#if !defined(__cpp_lib_smart_ptr_for_overwrite)
1591# if (__cplusplus >= 202002L) && _GLIBCXX_HOSTED
1592# define __glibcxx_smart_ptr_for_overwrite 202002L
1593# if defined(__glibcxx_want_all) || defined(__glibcxx_want_smart_ptr_for_overwrite)
1594# define __cpp_lib_smart_ptr_for_overwrite 202002L
1595# endif
1596# endif
1597#endif /* !defined(__cpp_lib_smart_ptr_for_overwrite) && defined(__glibcxx_want_smart_ptr_for_overwrite) */
1598#undef __glibcxx_want_smart_ptr_for_overwrite
1599
1600// from version.def line 1325
1601#if !defined(__cpp_lib_syncbuf)
1602# if (__cplusplus >= 202002L) && _GLIBCXX_USE_CXX11_ABI && _GLIBCXX_HOSTED
1603# define __glibcxx_syncbuf 201803L
1604# if defined(__glibcxx_want_all) || defined(__glibcxx_want_syncbuf)
1605# define __cpp_lib_syncbuf 201803L
1606# endif
1607# endif
1608#endif /* !defined(__cpp_lib_syncbuf) && defined(__glibcxx_want_syncbuf) */
1609#undef __glibcxx_want_syncbuf
1610
1611// from version.def line 1335
1612#if !defined(__cpp_lib_byteswap)
1613# if (__cplusplus >= 202100L)
1614# define __glibcxx_byteswap 202110L
1615# if defined(__glibcxx_want_all) || defined(__glibcxx_want_byteswap)
1616# define __cpp_lib_byteswap 202110L
1617# endif
1618# endif
1619#endif /* !defined(__cpp_lib_byteswap) && defined(__glibcxx_want_byteswap) */
1620#undef __glibcxx_want_byteswap
1621
1622// from version.def line 1343
1623#if !defined(__cpp_lib_constexpr_charconv)
1624# if (__cplusplus >= 202100L)
1625# define __glibcxx_constexpr_charconv 202207L
1626# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_charconv)
1627# define __cpp_lib_constexpr_charconv 202207L
1628# endif
1629# endif
1630#endif /* !defined(__cpp_lib_constexpr_charconv) && defined(__glibcxx_want_constexpr_charconv) */
1631#undef __glibcxx_want_constexpr_charconv
1632
1633// from version.def line 1351
1634#if !defined(__cpp_lib_constexpr_typeinfo)
1635# if (__cplusplus >= 202100L)
1636# define __glibcxx_constexpr_typeinfo 202106L
1637# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_typeinfo)
1638# define __cpp_lib_constexpr_typeinfo 202106L
1639# endif
1640# endif
1641#endif /* !defined(__cpp_lib_constexpr_typeinfo) && defined(__glibcxx_want_constexpr_typeinfo) */
1642#undef __glibcxx_want_constexpr_typeinfo
1643
1644// from version.def line 1359
1645#if !defined(__cpp_lib_expected)
1646# if (__cplusplus >= 202100L) && (__cpp_concepts >= 202002L)
1647# define __glibcxx_expected 202211L
1648# if defined(__glibcxx_want_all) || defined(__glibcxx_want_expected)
1649# define __cpp_lib_expected 202211L
1650# endif
1651# endif
1652#endif /* !defined(__cpp_lib_expected) && defined(__glibcxx_want_expected) */
1653#undef __glibcxx_want_expected
1654
1655// from version.def line 1368
1656#if !defined(__cpp_lib_freestanding_algorithm)
1657# if (__cplusplus >= 202100L)
1658# define __glibcxx_freestanding_algorithm 202311L
1659# if defined(__glibcxx_want_all) || defined(__glibcxx_want_freestanding_algorithm)
1660# define __cpp_lib_freestanding_algorithm 202311L
1661# endif
1662# endif
1663#endif /* !defined(__cpp_lib_freestanding_algorithm) && defined(__glibcxx_want_freestanding_algorithm) */
1664#undef __glibcxx_want_freestanding_algorithm
1665
1666// from version.def line 1377
1667#if !defined(__cpp_lib_freestanding_array)
1668# if (__cplusplus >= 202100L)
1669# define __glibcxx_freestanding_array 202311L
1670# if defined(__glibcxx_want_all) || defined(__glibcxx_want_freestanding_array)
1671# define __cpp_lib_freestanding_array 202311L
1672# endif
1673# endif
1674#endif /* !defined(__cpp_lib_freestanding_array) && defined(__glibcxx_want_freestanding_array) */
1675#undef __glibcxx_want_freestanding_array
1676
1677// from version.def line 1386
1678#if !defined(__cpp_lib_freestanding_cstring)
1679# if (__cplusplus >= 202100L)
1680# define __glibcxx_freestanding_cstring 202311L
1681# if defined(__glibcxx_want_all) || defined(__glibcxx_want_freestanding_cstring)
1682# define __cpp_lib_freestanding_cstring 202311L
1683# endif
1684# endif
1685#endif /* !defined(__cpp_lib_freestanding_cstring) && defined(__glibcxx_want_freestanding_cstring) */
1686#undef __glibcxx_want_freestanding_cstring
1687
1688// from version.def line 1395
1689#if !defined(__cpp_lib_freestanding_expected)
1690# if (__cplusplus >= 202100L) && (__cpp_lib_expected)
1691# define __glibcxx_freestanding_expected 202311L
1692# if defined(__glibcxx_want_all) || defined(__glibcxx_want_freestanding_expected)
1693# define __cpp_lib_freestanding_expected 202311L
1694# endif
1695# endif
1696#endif /* !defined(__cpp_lib_freestanding_expected) && defined(__glibcxx_want_freestanding_expected) */
1697#undef __glibcxx_want_freestanding_expected
1698
1699// from version.def line 1405
1700#if !defined(__cpp_lib_freestanding_optional)
1701# if (__cplusplus >= 202100L)
1702# define __glibcxx_freestanding_optional 202311L
1703# if defined(__glibcxx_want_all) || defined(__glibcxx_want_freestanding_optional)
1704# define __cpp_lib_freestanding_optional 202311L
1705# endif
1706# endif
1707#endif /* !defined(__cpp_lib_freestanding_optional) && defined(__glibcxx_want_freestanding_optional) */
1708#undef __glibcxx_want_freestanding_optional
1709
1710// from version.def line 1414
1711#if !defined(__cpp_lib_freestanding_string_view)
1712# if (__cplusplus >= 202100L)
1713# define __glibcxx_freestanding_string_view 202311L
1714# if defined(__glibcxx_want_all) || defined(__glibcxx_want_freestanding_string_view)
1715# define __cpp_lib_freestanding_string_view 202311L
1716# endif
1717# endif
1718#endif /* !defined(__cpp_lib_freestanding_string_view) && defined(__glibcxx_want_freestanding_string_view) */
1719#undef __glibcxx_want_freestanding_string_view
1720
1721// from version.def line 1423
1722#if !defined(__cpp_lib_freestanding_variant)
1723# if (__cplusplus >= 202100L)
1724# define __glibcxx_freestanding_variant 202311L
1725# if defined(__glibcxx_want_all) || defined(__glibcxx_want_freestanding_variant)
1726# define __cpp_lib_freestanding_variant 202311L
1727# endif
1728# endif
1729#endif /* !defined(__cpp_lib_freestanding_variant) && defined(__glibcxx_want_freestanding_variant) */
1730#undef __glibcxx_want_freestanding_variant
1731
1732// from version.def line 1432
1733#if !defined(__cpp_lib_invoke_r)
1734# if (__cplusplus >= 202100L)
1735# define __glibcxx_invoke_r 202106L
1736# if defined(__glibcxx_want_all) || defined(__glibcxx_want_invoke_r)
1737# define __cpp_lib_invoke_r 202106L
1738# endif
1739# endif
1740#endif /* !defined(__cpp_lib_invoke_r) && defined(__glibcxx_want_invoke_r) */
1741#undef __glibcxx_want_invoke_r
1742
1743// from version.def line 1440
1744#if !defined(__cpp_lib_is_scoped_enum)
1745# if (__cplusplus >= 202100L)
1746# define __glibcxx_is_scoped_enum 202011L
1747# if defined(__glibcxx_want_all) || defined(__glibcxx_want_is_scoped_enum)
1748# define __cpp_lib_is_scoped_enum 202011L
1749# endif
1750# endif
1751#endif /* !defined(__cpp_lib_is_scoped_enum) && defined(__glibcxx_want_is_scoped_enum) */
1752#undef __glibcxx_want_is_scoped_enum
1753
1754// from version.def line 1448
1755#if !defined(__cpp_lib_reference_from_temporary)
1756# if (__cplusplus >= 202100L) && (__has_builtin(__reference_constructs_from_temporary) && __has_builtin(__reference_converts_from_temporary))
1757# define __glibcxx_reference_from_temporary 202202L
1758# if defined(__glibcxx_want_all) || defined(__glibcxx_want_reference_from_temporary)
1759# define __cpp_lib_reference_from_temporary 202202L
1760# endif
1761# endif
1762#endif /* !defined(__cpp_lib_reference_from_temporary) && defined(__glibcxx_want_reference_from_temporary) */
1763#undef __glibcxx_want_reference_from_temporary
1764
1765// from version.def line 1468
1766#if !defined(__cpp_lib_ranges_to_container)
1767# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED
1768# define __glibcxx_ranges_to_container 202202L
1769# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_to_container)
1770# define __cpp_lib_ranges_to_container 202202L
1771# endif
1772# endif
1773#endif /* !defined(__cpp_lib_ranges_to_container) && defined(__glibcxx_want_ranges_to_container) */
1774#undef __glibcxx_want_ranges_to_container
1775
1776// from version.def line 1477
1777#if !defined(__cpp_lib_ranges_zip)
1778# if (__cplusplus >= 202100L)
1779# define __glibcxx_ranges_zip 202110L
1780# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_zip)
1781# define __cpp_lib_ranges_zip 202110L
1782# endif
1783# endif
1784#endif /* !defined(__cpp_lib_ranges_zip) && defined(__glibcxx_want_ranges_zip) */
1785#undef __glibcxx_want_ranges_zip
1786
1787// from version.def line 1485
1788#if !defined(__cpp_lib_ranges_chunk)
1789# if (__cplusplus >= 202100L)
1790# define __glibcxx_ranges_chunk 202202L
1791# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_chunk)
1792# define __cpp_lib_ranges_chunk 202202L
1793# endif
1794# endif
1795#endif /* !defined(__cpp_lib_ranges_chunk) && defined(__glibcxx_want_ranges_chunk) */
1796#undef __glibcxx_want_ranges_chunk
1797
1798// from version.def line 1493
1799#if !defined(__cpp_lib_ranges_slide)
1800# if (__cplusplus >= 202100L)
1801# define __glibcxx_ranges_slide 202202L
1802# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_slide)
1803# define __cpp_lib_ranges_slide 202202L
1804# endif
1805# endif
1806#endif /* !defined(__cpp_lib_ranges_slide) && defined(__glibcxx_want_ranges_slide) */
1807#undef __glibcxx_want_ranges_slide
1808
1809// from version.def line 1501
1810#if !defined(__cpp_lib_ranges_chunk_by)
1811# if (__cplusplus >= 202100L)
1812# define __glibcxx_ranges_chunk_by 202202L
1813# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_chunk_by)
1814# define __cpp_lib_ranges_chunk_by 202202L
1815# endif
1816# endif
1817#endif /* !defined(__cpp_lib_ranges_chunk_by) && defined(__glibcxx_want_ranges_chunk_by) */
1818#undef __glibcxx_want_ranges_chunk_by
1819
1820// from version.def line 1509
1821#if !defined(__cpp_lib_ranges_join_with)
1822# if (__cplusplus >= 202100L)
1823# define __glibcxx_ranges_join_with 202202L
1824# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_join_with)
1825# define __cpp_lib_ranges_join_with 202202L
1826# endif
1827# endif
1828#endif /* !defined(__cpp_lib_ranges_join_with) && defined(__glibcxx_want_ranges_join_with) */
1829#undef __glibcxx_want_ranges_join_with
1830
1831// from version.def line 1517
1832#if !defined(__cpp_lib_ranges_repeat)
1833# if (__cplusplus >= 202100L)
1834# define __glibcxx_ranges_repeat 202207L
1835# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_repeat)
1836# define __cpp_lib_ranges_repeat 202207L
1837# endif
1838# endif
1839#endif /* !defined(__cpp_lib_ranges_repeat) && defined(__glibcxx_want_ranges_repeat) */
1840#undef __glibcxx_want_ranges_repeat
1841
1842// from version.def line 1525
1843#if !defined(__cpp_lib_ranges_stride)
1844# if (__cplusplus >= 202100L)
1845# define __glibcxx_ranges_stride 202207L
1846# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_stride)
1847# define __cpp_lib_ranges_stride 202207L
1848# endif
1849# endif
1850#endif /* !defined(__cpp_lib_ranges_stride) && defined(__glibcxx_want_ranges_stride) */
1851#undef __glibcxx_want_ranges_stride
1852
1853// from version.def line 1533
1854#if !defined(__cpp_lib_ranges_cartesian_product)
1855# if (__cplusplus >= 202100L)
1856# define __glibcxx_ranges_cartesian_product 202207L
1857# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_cartesian_product)
1858# define __cpp_lib_ranges_cartesian_product 202207L
1859# endif
1860# endif
1861#endif /* !defined(__cpp_lib_ranges_cartesian_product) && defined(__glibcxx_want_ranges_cartesian_product) */
1862#undef __glibcxx_want_ranges_cartesian_product
1863
1864// from version.def line 1541
1865#if !defined(__cpp_lib_ranges_as_rvalue)
1866# if (__cplusplus >= 202100L)
1867# define __glibcxx_ranges_as_rvalue 202207L
1868# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_as_rvalue)
1869# define __cpp_lib_ranges_as_rvalue 202207L
1870# endif
1871# endif
1872#endif /* !defined(__cpp_lib_ranges_as_rvalue) && defined(__glibcxx_want_ranges_as_rvalue) */
1873#undef __glibcxx_want_ranges_as_rvalue
1874
1875// from version.def line 1549
1876#if !defined(__cpp_lib_ranges_as_const)
1877# if (__cplusplus >= 202100L)
1878# define __glibcxx_ranges_as_const 202311L
1879# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_as_const)
1880# define __cpp_lib_ranges_as_const 202311L
1881# endif
1882# endif
1883#endif /* !defined(__cpp_lib_ranges_as_const) && defined(__glibcxx_want_ranges_as_const) */
1884#undef __glibcxx_want_ranges_as_const
1885
1886// from version.def line 1557
1887#if !defined(__cpp_lib_ranges_enumerate)
1888# if (__cplusplus >= 202100L)
1889# define __glibcxx_ranges_enumerate 202302L
1890# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_enumerate)
1891# define __cpp_lib_ranges_enumerate 202302L
1892# endif
1893# endif
1894#endif /* !defined(__cpp_lib_ranges_enumerate) && defined(__glibcxx_want_ranges_enumerate) */
1895#undef __glibcxx_want_ranges_enumerate
1896
1897// from version.def line 1565
1898#if !defined(__cpp_lib_ranges_fold)
1899# if (__cplusplus >= 202100L)
1900# define __glibcxx_ranges_fold 202207L
1901# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_fold)
1902# define __cpp_lib_ranges_fold 202207L
1903# endif
1904# endif
1905#endif /* !defined(__cpp_lib_ranges_fold) && defined(__glibcxx_want_ranges_fold) */
1906#undef __glibcxx_want_ranges_fold
1907
1908// from version.def line 1573
1909#if !defined(__cpp_lib_ranges_contains)
1910# if (__cplusplus >= 202100L)
1911# define __glibcxx_ranges_contains 202207L
1912# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_contains)
1913# define __cpp_lib_ranges_contains 202207L
1914# endif
1915# endif
1916#endif /* !defined(__cpp_lib_ranges_contains) && defined(__glibcxx_want_ranges_contains) */
1917#undef __glibcxx_want_ranges_contains
1918
1919// from version.def line 1581
1920#if !defined(__cpp_lib_ranges_iota)
1921# if (__cplusplus >= 202100L)
1922# define __glibcxx_ranges_iota 202202L
1923# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_iota)
1924# define __cpp_lib_ranges_iota 202202L
1925# endif
1926# endif
1927#endif /* !defined(__cpp_lib_ranges_iota) && defined(__glibcxx_want_ranges_iota) */
1928#undef __glibcxx_want_ranges_iota
1929
1930// from version.def line 1589
1931#if !defined(__cpp_lib_ranges_find_last)
1932# if (__cplusplus >= 202100L)
1933# define __glibcxx_ranges_find_last 202207L
1934# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ranges_find_last)
1935# define __cpp_lib_ranges_find_last 202207L
1936# endif
1937# endif
1938#endif /* !defined(__cpp_lib_ranges_find_last) && defined(__glibcxx_want_ranges_find_last) */
1939#undef __glibcxx_want_ranges_find_last
1940
1941// from version.def line 1597
1942#if !defined(__cpp_lib_constexpr_bitset)
1943# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED && (__cpp_constexpr_dynamic_alloc)
1944# define __glibcxx_constexpr_bitset 202202L
1945# if defined(__glibcxx_want_all) || defined(__glibcxx_want_constexpr_bitset)
1946# define __cpp_lib_constexpr_bitset 202202L
1947# endif
1948# endif
1949#endif /* !defined(__cpp_lib_constexpr_bitset) && defined(__glibcxx_want_constexpr_bitset) */
1950#undef __glibcxx_want_constexpr_bitset
1951
1952// from version.def line 1607
1953#if !defined(__cpp_lib_stdatomic_h)
1954# if (__cplusplus >= 202100L)
1955# define __glibcxx_stdatomic_h 202011L
1956# if defined(__glibcxx_want_all) || defined(__glibcxx_want_stdatomic_h)
1957# define __cpp_lib_stdatomic_h 202011L
1958# endif
1959# endif
1960#endif /* !defined(__cpp_lib_stdatomic_h) && defined(__glibcxx_want_stdatomic_h) */
1961#undef __glibcxx_want_stdatomic_h
1962
1963// from version.def line 1615
1964#if !defined(__cpp_lib_adaptor_iterator_pair_constructor)
1965# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED
1966# define __glibcxx_adaptor_iterator_pair_constructor 202106L
1967# if defined(__glibcxx_want_all) || defined(__glibcxx_want_adaptor_iterator_pair_constructor)
1968# define __cpp_lib_adaptor_iterator_pair_constructor 202106L
1969# endif
1970# endif
1971#endif /* !defined(__cpp_lib_adaptor_iterator_pair_constructor) && defined(__glibcxx_want_adaptor_iterator_pair_constructor) */
1972#undef __glibcxx_want_adaptor_iterator_pair_constructor
1973
1974// from version.def line 1624
1975#if !defined(__cpp_lib_formatters)
1976# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED
1977# define __glibcxx_formatters 202302L
1978# if defined(__glibcxx_want_all) || defined(__glibcxx_want_formatters)
1979# define __cpp_lib_formatters 202302L
1980# endif
1981# endif
1982#endif /* !defined(__cpp_lib_formatters) && defined(__glibcxx_want_formatters) */
1983#undef __glibcxx_want_formatters
1984
1985// from version.def line 1633
1986#if !defined(__cpp_lib_forward_like)
1987# if (__cplusplus >= 202100L)
1988# define __glibcxx_forward_like 202207L
1989# if defined(__glibcxx_want_all) || defined(__glibcxx_want_forward_like)
1990# define __cpp_lib_forward_like 202207L
1991# endif
1992# endif
1993#endif /* !defined(__cpp_lib_forward_like) && defined(__glibcxx_want_forward_like) */
1994#undef __glibcxx_want_forward_like
1995
1996// from version.def line 1641
1997#if !defined(__cpp_lib_ios_noreplace)
1998# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED
1999# define __glibcxx_ios_noreplace 202207L
2000# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ios_noreplace)
2001# define __cpp_lib_ios_noreplace 202207L
2002# endif
2003# endif
2004#endif /* !defined(__cpp_lib_ios_noreplace) && defined(__glibcxx_want_ios_noreplace) */
2005#undef __glibcxx_want_ios_noreplace
2006
2007// from version.def line 1650
2008#if !defined(__cpp_lib_move_only_function)
2009# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED
2010# define __glibcxx_move_only_function 202110L
2011# if defined(__glibcxx_want_all) || defined(__glibcxx_want_move_only_function)
2012# define __cpp_lib_move_only_function 202110L
2013# endif
2014# endif
2015#endif /* !defined(__cpp_lib_move_only_function) && defined(__glibcxx_want_move_only_function) */
2016#undef __glibcxx_want_move_only_function
2017
2018// from version.def line 1659
2019#if !defined(__cpp_lib_out_ptr)
2020# if (__cplusplus >= 202100L)
2021# define __glibcxx_out_ptr 202311L
2022# if defined(__glibcxx_want_all) || defined(__glibcxx_want_out_ptr)
2023# define __cpp_lib_out_ptr 202311L
2024# endif
2025# endif
2026#endif /* !defined(__cpp_lib_out_ptr) && defined(__glibcxx_want_out_ptr) */
2027#undef __glibcxx_want_out_ptr
2028
2029// from version.def line 1667
2030#if !defined(__cpp_lib_print)
2031# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED
2032# define __glibcxx_print 202211L
2033# if defined(__glibcxx_want_all) || defined(__glibcxx_want_print)
2034# define __cpp_lib_print 202211L
2035# endif
2036# endif
2037#endif /* !defined(__cpp_lib_print) && defined(__glibcxx_want_print) */
2038#undef __glibcxx_want_print
2039
2040// from version.def line 1676
2041#if !defined(__cpp_lib_spanstream)
2042# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED && (__glibcxx_span)
2043# define __glibcxx_spanstream 202106L
2044# if defined(__glibcxx_want_all) || defined(__glibcxx_want_spanstream)
2045# define __cpp_lib_spanstream 202106L
2046# endif
2047# endif
2048#endif /* !defined(__cpp_lib_spanstream) && defined(__glibcxx_want_spanstream) */
2049#undef __glibcxx_want_spanstream
2050
2051// from version.def line 1686
2052#if !defined(__cpp_lib_stacktrace)
2053# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED && (_GLIBCXX_HAVE_STACKTRACE)
2054# define __glibcxx_stacktrace 202011L
2055# if defined(__glibcxx_want_all) || defined(__glibcxx_want_stacktrace)
2056# define __cpp_lib_stacktrace 202011L
2057# endif
2058# endif
2059#endif /* !defined(__cpp_lib_stacktrace) && defined(__glibcxx_want_stacktrace) */
2060#undef __glibcxx_want_stacktrace
2061
2062// from version.def line 1696
2063#if !defined(__cpp_lib_string_contains)
2064# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED
2065# define __glibcxx_string_contains 202011L
2066# if defined(__glibcxx_want_all) || defined(__glibcxx_want_string_contains)
2067# define __cpp_lib_string_contains 202011L
2068# endif
2069# endif
2070#endif /* !defined(__cpp_lib_string_contains) && defined(__glibcxx_want_string_contains) */
2071#undef __glibcxx_want_string_contains
2072
2073// from version.def line 1705
2074#if !defined(__cpp_lib_string_resize_and_overwrite)
2075# if (__cplusplus >= 202100L) && _GLIBCXX_HOSTED
2076# define __glibcxx_string_resize_and_overwrite 202110L
2077# if defined(__glibcxx_want_all) || defined(__glibcxx_want_string_resize_and_overwrite)
2078# define __cpp_lib_string_resize_and_overwrite 202110L
2079# endif
2080# endif
2081#endif /* !defined(__cpp_lib_string_resize_and_overwrite) && defined(__glibcxx_want_string_resize_and_overwrite) */
2082#undef __glibcxx_want_string_resize_and_overwrite
2083
2084// from version.def line 1714
2085#if !defined(__cpp_lib_to_underlying)
2086# if (__cplusplus >= 202100L)
2087# define __glibcxx_to_underlying 202102L
2088# if defined(__glibcxx_want_all) || defined(__glibcxx_want_to_underlying)
2089# define __cpp_lib_to_underlying 202102L
2090# endif
2091# endif
2092#endif /* !defined(__cpp_lib_to_underlying) && defined(__glibcxx_want_to_underlying) */
2093#undef __glibcxx_want_to_underlying
2094
2095// from version.def line 1722
2096#if !defined(__cpp_lib_unreachable)
2097# if (__cplusplus >= 202100L)
2098# define __glibcxx_unreachable 202202L
2099# if defined(__glibcxx_want_all) || defined(__glibcxx_want_unreachable)
2100# define __cpp_lib_unreachable 202202L
2101# endif
2102# endif
2103#endif /* !defined(__cpp_lib_unreachable) && defined(__glibcxx_want_unreachable) */
2104#undef __glibcxx_want_unreachable
2105
2106// from version.def line 1730
2107#if !defined(__cpp_lib_fstream_native_handle)
2108# if (__cplusplus > 202302L) && _GLIBCXX_HOSTED
2109# define __glibcxx_fstream_native_handle 202306L
2110# if defined(__glibcxx_want_all) || defined(__glibcxx_want_fstream_native_handle)
2111# define __cpp_lib_fstream_native_handle 202306L
2112# endif
2113# endif
2114#endif /* !defined(__cpp_lib_fstream_native_handle) && defined(__glibcxx_want_fstream_native_handle) */
2115#undef __glibcxx_want_fstream_native_handle
2116
2117// from version.def line 1739
2118#if !defined(__cpp_lib_ratio)
2119# if (__cplusplus > 202302L)
2120# define __glibcxx_ratio 202306L
2121# if defined(__glibcxx_want_all) || defined(__glibcxx_want_ratio)
2122# define __cpp_lib_ratio 202306L
2123# endif
2124# endif
2125#endif /* !defined(__cpp_lib_ratio) && defined(__glibcxx_want_ratio) */
2126#undef __glibcxx_want_ratio
2127
2128// from version.def line 1747
2129#if !defined(__cpp_lib_saturation_arithmetic)
2130# if (__cplusplus > 202302L)
2131# define __glibcxx_saturation_arithmetic 202311L
2132# if defined(__glibcxx_want_all) || defined(__glibcxx_want_saturation_arithmetic)
2133# define __cpp_lib_saturation_arithmetic 202311L
2134# endif
2135# endif
2136#endif /* !defined(__cpp_lib_saturation_arithmetic) && defined(__glibcxx_want_saturation_arithmetic) */
2137#undef __glibcxx_want_saturation_arithmetic
2138
2139// from version.def line 1755
2140#if !defined(__cpp_lib_text_encoding)
2141# if (__cplusplus > 202302L) && _GLIBCXX_HOSTED && (_GLIBCXX_USE_NL_LANGINFO_L)
2142# define __glibcxx_text_encoding 202306L
2143# if defined(__glibcxx_want_all) || defined(__glibcxx_want_text_encoding)
2144# define __cpp_lib_text_encoding 202306L
2145# endif
2146# endif
2147#endif /* !defined(__cpp_lib_text_encoding) && defined(__glibcxx_want_text_encoding) */
2148#undef __glibcxx_want_text_encoding
2149
2150// from version.def line 1765
2151#if !defined(__cpp_lib_to_string)
2152# if (__cplusplus > 202302L) && _GLIBCXX_HOSTED && (__glibcxx_to_chars)
2153# define __glibcxx_to_string 202306L
2154# if defined(__glibcxx_want_all) || defined(__glibcxx_want_to_string)
2155# define __cpp_lib_to_string 202306L
2156# endif
2157# endif
2158#endif /* !defined(__cpp_lib_to_string) && defined(__glibcxx_want_to_string) */
2159#undef __glibcxx_want_to_string
2160
2161// from version.def line 1775
2162#if !defined(__cpp_lib_generator)
2163# if (__cplusplus >= 202100L) && (__glibcxx_coroutine)
2164# define __glibcxx_generator 202207L
2165# if defined(__glibcxx_want_all) || defined(__glibcxx_want_generator)
2166# define __cpp_lib_generator 202207L
2167# endif
2168# endif
2169#endif /* !defined(__cpp_lib_generator) && defined(__glibcxx_want_generator) */
2170#undef __glibcxx_want_generator
2171
2172#undef __glibcxx_want_all