diff --git a/source/support.tex b/source/support.tex index 04b2d2f5a5..f4f632944b 100644 --- a/source/support.tex +++ b/source/support.tex @@ -578,7 +578,8 @@ // freestanding, also in \libheader{memory}, \libheader{scoped_allocator}, \libheader{string}, \libheader{deque}, \libheader{forward_list}, \libheader{list}, // \libheader{vector}, \libheader{map}, \libheader{set}, \libheader{unordered_map}, \libheader{unordered_set} #define @\defnlibxname{cpp_lib_any}@ 201606L // also in \libheader{any} -#define @\defnlibxname{cpp_lib_apply}@ 202506L // freestanding, also in \libheader{tuple}, \libheader{type_traits} +#define @\defnlibxname{cpp_lib_apply}@ 202506L + // freestanding, also in \libheader{tuple}, \libheader{type_traits} #define @\defnlibxname{cpp_lib_array_constexpr}@ 201811L // freestanding, also in \libheader{iterator}, \libheader{array} #define @\defnlibxname{cpp_lib_as_const}@ 201510L // freestanding, also in \libheader{utility} @@ -4670,10 +4671,10 @@ constexpr initializer_list() noexcept; constexpr const E* data() const noexcept; - constexpr size_t size() const noexcept; // number of elements + constexpr size_t size() const noexcept; constexpr bool empty() const noexcept; - constexpr const E* begin() const noexcept; // first element - constexpr const E* end() const noexcept; // one past the last element + constexpr const E* begin() const noexcept; + constexpr const E* end() const noexcept; }; } \end{codeblock}