blob: 1f05f3a851ccf9a93786d60ba4bb5f626a3fa731 [file] [log] [blame]
Marshall Clow10988802018-04-03 15:48:24 +00001// -*- C++ -*-
2//===--------------------------- version ----------------------------------===//
3//
Chandler Carruthd2012102019-01-19 10:56:40 +00004// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Marshall Clow10988802018-04-03 15:48:24 +00007//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_VERSIONH
11#define _LIBCPP_VERSIONH
12
13/*
Eric Fiselier4e860492019-01-16 01:37:43 +000014 version synopsis
Marshall Clow10988802018-04-03 15:48:24 +000015
Eric Fiselier4e860492019-01-16 01:37:43 +000016Macro name Value Headers
17__cpp_lib_addressof_constexpr 201603L <memory>
18__cpp_lib_allocator_traits_is_always_equal 201411L <memory> <scoped_allocator> <string>
19 <deque> <forward_list> <list>
20 <vector> <map> <set>
21 <unordered_map> <unordered_set>
22__cpp_lib_any 201606L <any>
23__cpp_lib_apply 201603L <tuple>
Louis Dionne44704ce2020-05-22 09:59:48 -040024__cpp_lib_array_constexpr 201811L <iterator> <array>
25 201603L // C++17
Eric Fiselier4e860492019-01-16 01:37:43 +000026__cpp_lib_as_const 201510L <utility>
Olivier Girouxdf5bfa32020-09-09 10:00:09 -070027__cpp_lib_atomic_flag_test 201907L <atomic>
28__cpp_lib_atomic_float 201711L <atomic>
Eric Fiselier4e860492019-01-16 01:37:43 +000029__cpp_lib_atomic_is_always_lock_free 201603L <atomic>
Olivier Girouxdf5bfa32020-09-09 10:00:09 -070030__cpp_lib_atomic_lock_free_type_aliases 201907L <atomic>
Eric Fiselier4e860492019-01-16 01:37:43 +000031__cpp_lib_atomic_ref 201806L <atomic>
Olivier Girouxdf5bfa32020-09-09 10:00:09 -070032__cpp_lib_atomic_shared_ptr 201711L <atomic>
33__cpp_lib_atomic_value_initialization 201911L <atomic> <memory>
34__cpp_lib_atomic_wait 201907L <atomic>
Eric Fiselier4e860492019-01-16 01:37:43 +000035__cpp_lib_bind_front 201811L <functional>
36__cpp_lib_bit_cast 201806L <bit>
37__cpp_lib_bool_constant 201505L <type_traits>
38__cpp_lib_boyer_moore_searcher 201603L <functional>
39__cpp_lib_byte 201603L <cstddef>
40__cpp_lib_char8_t 201811L <atomic> <filesystem> <istream>
41 <limits> <locale> <ostream>
42 <string> <string_view>
43__cpp_lib_chrono 201611L <chrono>
44__cpp_lib_chrono_udls 201304L <chrono>
45__cpp_lib_clamp 201603L <algorithm>
46__cpp_lib_complex_udls 201309L <complex>
47__cpp_lib_concepts 201806L <concepts>
Louis Dionne99f59432020-09-17 12:06:13 -040048__cpp_lib_constexpr_dynamic_alloc 201907L <memory>
Eric Fiselier4e860492019-01-16 01:37:43 +000049__cpp_lib_constexpr_misc 201811L <array> <functional> <iterator>
50 <string_view> <tuple> <utility>
51__cpp_lib_constexpr_swap_algorithms 201806L <algorithm>
Michael Schellenberger Costad41ace62020-09-02 21:20:33 +020052__cpp_lib_constexpr_utility 201811L <utility>
Eric Fiselier4e860492019-01-16 01:37:43 +000053__cpp_lib_destroying_delete 201806L <new>
54__cpp_lib_enable_shared_from_this 201603L <memory>
Louis Dionne1b335f72019-11-14 08:54:23 -050055__cpp_lib_endian 201907L <bit>
Marek Kurdeja98b1412020-05-02 13:58:03 +020056__cpp_lib_erase_if 202002L <string> <deque> <forward_list>
Eric Fiselier4e860492019-01-16 01:37:43 +000057 <list> <vector> <map>
58 <set> <unordered_map> <unordered_set>
59__cpp_lib_exchange_function 201304L <utility>
60__cpp_lib_execution 201603L <execution>
61__cpp_lib_filesystem 201703L <filesystem>
62__cpp_lib_gcd_lcm 201606L <numeric>
63__cpp_lib_generic_associative_lookup 201304L <map> <set>
64__cpp_lib_generic_unordered_lookup 201811L <unordered_map> <unordered_set>
65__cpp_lib_hardware_interference_size 201703L <new>
66__cpp_lib_has_unique_object_representations 201606L <type_traits>
67__cpp_lib_hypot 201603L <cmath>
68__cpp_lib_incomplete_container_elements 201505L <forward_list> <list> <vector>
69__cpp_lib_integer_sequence 201304L <utility>
70__cpp_lib_integral_constant_callable 201304L <type_traits>
Marshall Clow174901e2019-04-25 12:11:43 +000071__cpp_lib_interpolate 201902L <numeric>
Eric Fiselier4e860492019-01-16 01:37:43 +000072__cpp_lib_invoke 201411L <functional>
73__cpp_lib_is_aggregate 201703L <type_traits>
74__cpp_lib_is_constant_evaluated 201811L <type_traits>
75__cpp_lib_is_final 201402L <type_traits>
76__cpp_lib_is_invocable 201703L <type_traits>
77__cpp_lib_is_null_pointer 201309L <type_traits>
78__cpp_lib_is_swappable 201603L <type_traits>
79__cpp_lib_launder 201606L <new>
80__cpp_lib_list_remove_return_type 201806L <forward_list> <list>
81__cpp_lib_logical_traits 201510L <type_traits>
82__cpp_lib_make_from_tuple 201606L <tuple>
83__cpp_lib_make_reverse_iterator 201402L <iterator>
84__cpp_lib_make_unique 201304L <memory>
85__cpp_lib_map_try_emplace 201411L <map>
Raul Tambreafcedea2020-06-19 12:43:33 +053086__cpp_lib_math_constants 201907L <numbers>
Eric Fiselier4e860492019-01-16 01:37:43 +000087__cpp_lib_math_special_functions 201603L <cmath>
88__cpp_lib_memory_resource 201603L <memory_resource>
89__cpp_lib_node_extract 201606L <map> <set> <unordered_map>
90 <unordered_set>
91__cpp_lib_nonmember_container_access 201411L <iterator> <array> <deque>
92 <forward_list> <list> <map>
93 <regex> <set> <string>
94 <unordered_map> <unordered_set> <vector>
95__cpp_lib_not_fn 201603L <functional>
96__cpp_lib_null_iterators 201304L <iterator>
97__cpp_lib_optional 201606L <optional>
98__cpp_lib_parallel_algorithm 201603L <algorithm> <numeric>
99__cpp_lib_quoted_string_io 201304L <iomanip>
100__cpp_lib_ranges 201811L <algorithm> <functional> <iterator>
101 <memory> <ranges>
102__cpp_lib_raw_memory_algorithms 201606L <memory>
103__cpp_lib_result_of_sfinae 201210L <functional> <type_traits>
104__cpp_lib_robust_nonmodifying_seq_ops 201304L <algorithm>
105__cpp_lib_sample 201603L <algorithm>
106__cpp_lib_scoped_lock 201703L <mutex>
107__cpp_lib_shared_mutex 201505L <shared_mutex>
108__cpp_lib_shared_ptr_arrays 201611L <memory>
109__cpp_lib_shared_ptr_weak_type 201606L <memory>
110__cpp_lib_shared_timed_mutex 201402L <shared_mutex>
Michael Schellenberger Costaea234282020-05-13 09:50:06 -0400111__cpp_lib_span 202002L <span>
Eric Fiselier4e860492019-01-16 01:37:43 +0000112__cpp_lib_string_udls 201304L <string>
113__cpp_lib_string_view 201606L <string> <string_view>
114__cpp_lib_three_way_comparison 201711L <compare>
Marek Kurdej0d715672020-01-30 13:27:35 +0100115__cpp_lib_to_array 201907L <array>
Eric Fiselier4e860492019-01-16 01:37:43 +0000116__cpp_lib_to_chars 201611L <utility>
117__cpp_lib_transformation_trait_aliases 201304L <type_traits>
118__cpp_lib_transparent_operators 201510L <functional>
119 201210L // C++14
120__cpp_lib_tuple_element_t 201402L <tuple>
121__cpp_lib_tuples_by_type 201304L <utility> <tuple>
122__cpp_lib_type_trait_variable_templates 201510L <type_traits>
123__cpp_lib_uncaught_exceptions 201411L <exception>
124__cpp_lib_unordered_map_try_emplace 201411L <unordered_map>
125__cpp_lib_variant 201606L <variant>
126__cpp_lib_void_t 201411L <type_traits>
Marshall Clowe085f8a2018-09-11 20:51:54 +0000127
Marshall Clow10988802018-04-03 15:48:24 +0000128*/
129
130#include <__config>
131
132#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
133#pragma GCC system_header
134#endif
135
Marshall Clow0a1e7502018-09-12 19:41:40 +0000136#if _LIBCPP_STD_VER > 11
Eric Fiselier4e860492019-01-16 01:37:43 +0000137# define __cpp_lib_chrono_udls 201304L
138# define __cpp_lib_complex_udls 201309L
139# define __cpp_lib_exchange_function 201304L
140# define __cpp_lib_generic_associative_lookup 201304L
141# define __cpp_lib_integer_sequence 201304L
142# define __cpp_lib_integral_constant_callable 201304L
143# define __cpp_lib_is_final 201402L
144# define __cpp_lib_is_null_pointer 201309L
145# define __cpp_lib_make_reverse_iterator 201402L
146# define __cpp_lib_make_unique 201304L
147# define __cpp_lib_null_iterators 201304L
148# define __cpp_lib_quoted_string_io 201304L
149# define __cpp_lib_result_of_sfinae 201210L
150# define __cpp_lib_robust_nonmodifying_seq_ops 201304L
Eric Fiselierad3f5302019-01-16 02:10:28 +0000151# if !defined(_LIBCPP_HAS_NO_THREADS)
152# define __cpp_lib_shared_timed_mutex 201402L
153# endif
Eric Fiselier4e860492019-01-16 01:37:43 +0000154# define __cpp_lib_string_udls 201304L
155# define __cpp_lib_transformation_trait_aliases 201304L
156# define __cpp_lib_transparent_operators 201210L
157# define __cpp_lib_tuple_element_t 201402L
158# define __cpp_lib_tuples_by_type 201304L
Marshall Clow0a1e7502018-09-12 19:41:40 +0000159#endif
160
161#if _LIBCPP_STD_VER > 14
Eric Fiselier4e860492019-01-16 01:37:43 +0000162# if !defined(_LIBCPP_HAS_NO_BUILTIN_ADDRESSOF)
163# define __cpp_lib_addressof_constexpr 201603L
164# endif
165# define __cpp_lib_allocator_traits_is_always_equal 201411L
166# define __cpp_lib_any 201606L
167# define __cpp_lib_apply 201603L
168# define __cpp_lib_array_constexpr 201603L
169# define __cpp_lib_as_const 201510L
Eric Fiselierad3f5302019-01-16 02:10:28 +0000170# if !defined(_LIBCPP_HAS_NO_THREADS)
171# define __cpp_lib_atomic_is_always_lock_free 201603L
172# endif
Eric Fiselier4e860492019-01-16 01:37:43 +0000173# define __cpp_lib_bool_constant 201505L
174// # define __cpp_lib_boyer_moore_searcher 201603L
175# define __cpp_lib_byte 201603L
176# define __cpp_lib_chrono 201611L
177# define __cpp_lib_clamp 201603L
178# define __cpp_lib_enable_shared_from_this 201603L
179// # define __cpp_lib_execution 201603L
Marshall Clow0a1e7502018-09-12 19:41:40 +0000180# define __cpp_lib_filesystem 201703L
Eric Fiselier4e860492019-01-16 01:37:43 +0000181# define __cpp_lib_gcd_lcm 201606L
Marek Kurdej9f6de072020-05-23 14:31:05 +0200182// # define __cpp_lib_hardware_interference_size 201703L
Eric Fiselier4e860492019-01-16 01:37:43 +0000183# if defined(_LIBCPP_HAS_UNIQUE_OBJECT_REPRESENTATIONS)
184# define __cpp_lib_has_unique_object_representations 201606L
185# endif
186# define __cpp_lib_hypot 201603L
187# define __cpp_lib_incomplete_container_elements 201505L
Marshall Clow0a1e7502018-09-12 19:41:40 +0000188# define __cpp_lib_invoke 201411L
Eric Fiselier4e860492019-01-16 01:37:43 +0000189# if !defined(_LIBCPP_HAS_NO_IS_AGGREGATE)
190# define __cpp_lib_is_aggregate 201703L
191# endif
192# define __cpp_lib_is_invocable 201703L
193# define __cpp_lib_is_swappable 201603L
194# define __cpp_lib_launder 201606L
195# define __cpp_lib_logical_traits 201510L
196# define __cpp_lib_make_from_tuple 201606L
197# define __cpp_lib_map_try_emplace 201411L
198// # define __cpp_lib_math_special_functions 201603L
199// # define __cpp_lib_memory_resource 201603L
Erik Pilkington82a65ad2018-10-31 17:31:35 +0000200# define __cpp_lib_node_extract 201606L
Eric Fiselier4e860492019-01-16 01:37:43 +0000201# define __cpp_lib_nonmember_container_access 201411L
202# define __cpp_lib_not_fn 201603L
203# define __cpp_lib_optional 201606L
204// # define __cpp_lib_parallel_algorithm 201603L
205# define __cpp_lib_raw_memory_algorithms 201606L
206# define __cpp_lib_sample 201603L
207# define __cpp_lib_scoped_lock 201703L
Eric Fiselierad3f5302019-01-16 02:10:28 +0000208# if !defined(_LIBCPP_HAS_NO_THREADS)
209# define __cpp_lib_shared_mutex 201505L
210# endif
Eric Fiselier4e860492019-01-16 01:37:43 +0000211// # define __cpp_lib_shared_ptr_arrays 201611L
212# define __cpp_lib_shared_ptr_weak_type 201606L
213# define __cpp_lib_string_view 201606L
214// # define __cpp_lib_to_chars 201611L
215# undef __cpp_lib_transparent_operators
216# define __cpp_lib_transparent_operators 201510L
217# define __cpp_lib_type_trait_variable_templates 201510L
218# define __cpp_lib_uncaught_exceptions 201411L
219# define __cpp_lib_unordered_map_try_emplace 201411L
220# define __cpp_lib_variant 201606L
221# define __cpp_lib_void_t 201411L
Marshall Clow0a1e7502018-09-12 19:41:40 +0000222#endif
223
224#if _LIBCPP_STD_VER > 17
Louis Dionne44704ce2020-05-22 09:59:48 -0400225# undef __cpp_lib_array_constexpr
226# define __cpp_lib_array_constexpr 201811L
Eric Fiselierad3f5302019-01-16 02:10:28 +0000227# if !defined(_LIBCPP_HAS_NO_THREADS)
Olivier Girouxdf5bfa32020-09-09 10:00:09 -0700228# define __cpp_lib_atomic_flag_test 201907L
229# endif
230# if !defined(_LIBCPP_HAS_NO_THREADS)
231// # define __cpp_lib_atomic_float 201711L
232# endif
233# if !defined(_LIBCPP_HAS_NO_THREADS)
234# define __cpp_lib_atomic_lock_free_type_aliases 201907L
235# endif
236# if !defined(_LIBCPP_HAS_NO_THREADS)
Eric Fiselierad3f5302019-01-16 02:10:28 +0000237// # define __cpp_lib_atomic_ref 201806L
238# endif
Olivier Girouxdf5bfa32020-09-09 10:00:09 -0700239# if !defined(_LIBCPP_HAS_NO_THREADS)
240// # define __cpp_lib_atomic_shared_ptr 201711L
241# endif
242# if !defined(_LIBCPP_HAS_NO_THREADS)
243// # define __cpp_lib_atomic_value_initialization 201911L
244# endif
245# if !defined(_LIBCPP_HAS_NO_THREADS)
246# define __cpp_lib_atomic_wait 201907L
247# endif
Eric Fiselier4e860492019-01-16 01:37:43 +0000248// # define __cpp_lib_bind_front 201811L
249// # define __cpp_lib_bit_cast 201806L
250# if !defined(_LIBCPP_NO_HAS_CHAR8_T)
251# define __cpp_lib_char8_t 201811L
252# endif
253// # define __cpp_lib_concepts 201806L
Louis Dionne99f59432020-09-17 12:06:13 -0400254# define __cpp_lib_constexpr_dynamic_alloc 201907L
Eric Fiselier4e860492019-01-16 01:37:43 +0000255// # define __cpp_lib_constexpr_misc 201811L
256// # define __cpp_lib_constexpr_swap_algorithms 201806L
Michael Schellenberger Costad41ace62020-09-02 21:20:33 +0200257# define __cpp_lib_constexpr_utility 201811L
Eric Fiselier02a8a2c2019-05-23 23:46:44 +0000258# if _LIBCPP_STD_VER > 17 && defined(__cpp_impl_destroying_delete) && __cpp_impl_destroying_delete >= 201806L
259# define __cpp_lib_destroying_delete 201806L
260# endif
Louis Dionne1b335f72019-11-14 08:54:23 -0500261# define __cpp_lib_endian 201907L
Marek Kurdeja98b1412020-05-02 13:58:03 +0200262# define __cpp_lib_erase_if 202002L
Ruslan Arutyunyan44234392020-11-10 07:49:55 -0500263# define __cpp_lib_generic_unordered_lookup 201811L
Marshall Clow174901e2019-04-25 12:11:43 +0000264# define __cpp_lib_interpolate 201902L
Eric Fiselier5afe0992019-04-24 17:54:25 +0000265# if !defined(_LIBCPP_HAS_NO_BUILTIN_IS_CONSTANT_EVALUATED)
266# define __cpp_lib_is_constant_evaluated 201811L
267# endif
Marek Kurdejf0eb09e2019-11-14 23:20:24 +0100268# define __cpp_lib_list_remove_return_type 201806L
Raul Tambreb89161b2020-06-19 10:36:44 -0400269# if defined(__cpp_concepts) && __cpp_concepts >= 201811L
270# define __cpp_lib_math_constants 201907L
271# endif
Eric Fiselier4e860492019-01-16 01:37:43 +0000272// # define __cpp_lib_ranges 201811L
Michael Schellenberger Costaea234282020-05-13 09:50:06 -0400273# define __cpp_lib_span 202002L
Eric Fiselier4e860492019-01-16 01:37:43 +0000274// # define __cpp_lib_three_way_comparison 201711L
Michael Schellenberger Costaea234282020-05-13 09:50:06 -0400275# define __cpp_lib_to_array 201907L
Marshall Clow0a1e7502018-09-12 19:41:40 +0000276#endif
277
Eric Fiselier4e860492019-01-16 01:37:43 +0000278#endif // _LIBCPP_VERSIONH