blob: 5e758fce76ef73c9b547d245f77319f2c9b70951 [file] [log] [blame]
Marshall Clow10988802018-04-03 15:48:24 +00001// -*- C++ -*-
2//===--------------------------- version ----------------------------------===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_VERSIONH
12#define _LIBCPP_VERSIONH
13
14/*
15 version synopsis
16
Marshall Clowe085f8a2018-09-11 20:51:54 +000017 Table 35 — Standard library feature-test macros
18Macro name Value Headers
19__cpp_lib_addressof_constexpr 201603L <memory>
20__cpp_lib_allocator_traits_is_always_equal 201411L <memory> <scoped_allocator> <string>
21 <deque> <forward_list> <list> <vector>
22 <map> <set> <unordered_map> <unordered_set>
23__cpp_lib_any 201606L <any>
24__cpp_lib_apply 201603L <tuple>
25__cpp_lib_array_constexpr 201603L <iterator> <array>
26__cpp_lib_as_const 201510L <utility>
27__cpp_lib_atomic_is_always_lock_free 201603L <atomic>
28__cpp_lib_atomic_ref 201806L <atomic>
29__cpp_lib_bit_cast 201806L <bit>
30__cpp_lib_bool_constant 201505L <type_traits>
31__cpp_lib_boyer_moore_searcher 201603L <functional>
32__cpp_lib_byte 201603L <cstddef>
Marshall Clow8732fed2018-12-11 04:35:44 +000033__cpp_lib_char8_t 201811L <atomic> <filesystem> <istream> <limits>
34 <locale> <ostream> <string> <string_view>
Marshall Clowe085f8a2018-09-11 20:51:54 +000035__cpp_lib_chrono 201611L <chrono>
Marshall Clow26fed192018-10-22 20:44:37 +000036__cpp_lib_chrono_udls 201304L <chrono>
Marshall Clowe085f8a2018-09-11 20:51:54 +000037__cpp_lib_clamp 201603L <algorithm>
38__cpp_lib_complex_udls 201309L <complex>
39__cpp_lib_concepts 201806L <concepts>
40__cpp_lib_constexpr_swap_algorithms 201806L <algorithm>
41__cpp_lib_enable_shared_from_this 201603L <memory>
42__cpp_lib_exchange_function 201304L <utility>
43__cpp_lib_execution 201603L <execution>
44__cpp_lib_filesystem 201703L <filesystem>
45__cpp_lib_gcd_lcm 201606L <numeric>
46__cpp_lib_generic_associative_lookup 201304L <map> <set>
47__cpp_lib_hardware_interference_size 201703L <new>
48__cpp_lib_has_unique_object_representations 201606L <type_traits>
49__cpp_lib_hypot 201603L <cmath>
50__cpp_lib_incomplete_container_elements 201505L <forward_list> <list> <vector>
51__cpp_lib_integer_sequence 201304L <utility>
52__cpp_lib_integral_constant_callable 201304L <type_traits>
53__cpp_lib_invoke 201411L <functional>
54__cpp_lib_is_aggregate 201703L <type_traits>
55__cpp_lib_is_final 201402L <type_traits>
56__cpp_lib_is_invocable 201703L <type_traits>
57__cpp_lib_is_null_pointer 201309L <type_traits>
58__cpp_lib_is_swappable 201603L <type_traits>
59__cpp_lib_launder 201606L <new>
60__cpp_lib_list_remove_return_type 201806L <forward_list> <list>
61__cpp_lib_logical_traits 201510L <type_traits>
62__cpp_lib_make_from_tuple 201606L <tuple>
63__cpp_lib_make_reverse_iterator 201402L <iterator>
64__cpp_lib_make_unique 201304L <memory>
65__cpp_lib_map_try_emplace 201411L <map>
66__cpp_lib_math_special_functions 201603L <cmath>
67__cpp_lib_memory_resource 201603L <memory_resource>
68__cpp_lib_node_extract 201606L <map> <set> <unordered_map> <unordered_set>
69__cpp_lib_nonmember_container_access 201411L <iterator> <array> <deque> <forward_list>
70 <list> <map> <regex> <set> <string>
71 <unordered_map> <unordered_set> <vector>
72__cpp_lib_not_fn 201603L <functional>
73__cpp_lib_null_iterators 201304L <iterator>
74__cpp_lib_optional 201606L <optional>
75__cpp_lib_parallel_algorithm 201603L <algorithm> <numeric>
76__cpp_lib_quoted_string_io 201304L <iomanip>
77__cpp_lib_raw_memory_algorithms 201606L <memory>
78__cpp_lib_result_of_sfinae 201210L <functional> <type_traits>
79__cpp_lib_robust_nonmodifying_seq_ops 201304L <algorithm>
80__cpp_lib_sample 201603L <algorithm>
81__cpp_lib_scoped_lock 201703L <mutex>
82__cpp_lib_shared_mutex 201505L <shared_mutex>
83__cpp_lib_shared_ptr_arrays 201611L <memory>
84__cpp_lib_shared_ptr_weak_type 201606L <memory>
85__cpp_lib_shared_timed_mutex 201402L <shared_mutex>
86__cpp_lib_string_udls 201304L <string>
87__cpp_lib_string_view 201606L <string> <string_view>
Marshall Clow9fa03062018-10-22 20:50:06 +000088__cpp_lib_to_chars 201611L <charconv>
Marshall Clowe085f8a2018-09-11 20:51:54 +000089__cpp_lib_transformation_trait_aliases 201304L <type_traits>
90__cpp_lib_transparent_operators 201510L <memory> <functional>
91__cpp_lib_tuple_element_t 201402L <tuple>
92__cpp_lib_tuples_by_type 201304L <utility> <tuple>
93__cpp_lib_type_trait_variable_templates 201510L <type_traits>
94__cpp_lib_uncaught_exceptions 201411L <exception>
95__cpp_lib_unordered_map_try_emplace 201411L <unordered_map>
96__cpp_lib_variant 201606L <variant>
97__cpp_lib_void_t 201411L <type_traits>
98
Marshall Clow10988802018-04-03 15:48:24 +000099*/
100
101#include <__config>
102
103#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
104#pragma GCC system_header
105#endif
106
Marshall Clow0a1e7502018-09-12 19:41:40 +0000107#if _LIBCPP_STD_VER > 11
108#endif
109
110#if _LIBCPP_STD_VER > 14
111# define __cpp_lib_atomic_is_always_lock_free 201603L
112# define __cpp_lib_filesystem 201703L
113# define __cpp_lib_invoke 201411L
114# define __cpp_lib_void_t 201411L
Erik Pilkington82a65ad2018-10-31 17:31:35 +0000115# define __cpp_lib_node_extract 201606L
Marshall Clow0a1e7502018-09-12 19:41:40 +0000116#endif
117
118#if _LIBCPP_STD_VER > 17
Marshall Clow8732fed2018-12-11 04:35:44 +0000119#ifndef _LIBCPP_NO_HAS_CHAR8_T
120# define __cpp_lib_char8_t 201811L
121#endif
Marshall Clow0a1e7502018-09-12 19:41:40 +0000122#endif
123
Marshall Clow10988802018-04-03 15:48:24 +0000124#endif // _LIBCPP_VERSIONH