From f92d24d9033e2547f0e65132f59b1a981602ed51 Mon Sep 17 00:00:00 2001 From: "A. Jiang" Date: Mon, 29 Dec 2025 09:54:10 +0800 Subject: [PATCH 1/2] [version.syn] Reformat a comment to avoid splitting `` Co-authored-by: Alisdair Meredith --- source/support.tex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/support.tex b/source/support.tex index 04b2d2f5a5..88bc4cc46e 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} From 52fc25c4db0e272e4ceb74f0f64d2918fed3aefa Mon Sep 17 00:00:00 2001 From: "A. Jiang" Date: Mon, 29 Dec 2025 09:54:36 +0800 Subject: [PATCH 2/2] [initializer.list.syn] Drop redundant comments --- source/support.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/support.tex b/source/support.tex index 88bc4cc46e..f4f632944b 100644 --- a/source/support.tex +++ b/source/support.tex @@ -4671,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}