From de25c4e4737eb98b76e71d79e13a03f743b5ef58 Mon Sep 17 00:00:00 2001 From: Hewill Kang Date: Mon, 29 Sep 2025 00:53:48 +0800 Subject: [PATCH 1/2] [containers] fix operator<=> format --- source/containers.tex | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/source/containers.tex b/source/containers.tex index a0460ca4d6..dde25ab464 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -6444,8 +6444,8 @@ template constexpr bool operator==(const deque& x, const deque& y); template - constexpr @\placeholder{synth-three-way-result}@ operator<=>(const deque& x, - @\itcorr@ const deque& y); + constexpr @\placeholder{synth-three-way-result}@ + operator<=>(const deque& x, const deque& y); template constexpr void swap(deque& x, deque& y) @@ -6940,8 +6940,9 @@ constexpr bool operator==(const forward_list& x, const forward_list& y); template - constexpr @\placeholder{synth-three-way-result}@ operator<=>(const forward_list& x, - @\itcorr@ const forward_list& y); + constexpr @\placeholder{synth-three-way-result}@ + operator<=>(const forward_list& x, + const forward_list& y); template constexpr void swap(forward_list& x, forward_list& y) @@ -8994,8 +8995,8 @@ template constexpr bool operator==(const list& x, const list& y); template - constexpr @\placeholder{synth-three-way-result}@ operator<=>(const list& x, - @\itcorr@ const list& y); + constexpr @\placeholder{synth-three-way-result}@ + operator<=>(const list& x, const list& y); template constexpr void swap(list& x, list& y) @@ -9787,8 +9788,8 @@ template constexpr bool operator==(const vector& x, const vector& y); template - constexpr @\placeholder{synth-three-way-result}@ operator<=>(const vector& x, - @\itcorr@ const vector& y); + constexpr @\placeholder{synth-three-way-result}@ + operator<=>(const vector& x, const vector& y); template constexpr void swap(vector& x, vector& y) @@ -12585,8 +12586,9 @@ constexpr bool operator==(const set& x, const set& y); template - constexpr @\placeholder{synth-three-way-result}@ operator<=>(const set& x, - @\itcorr@ const set& y); + constexpr @\placeholder{synth-three-way-result}@ + operator<=>(const set& x, + const set& y); template constexpr void swap(set& x, From 1c63e0e1eb7b01caada57e80de4c19c80010923d Mon Sep 17 00:00:00 2001 From: Hewill Kang Date: Mon, 29 Sep 2025 01:01:50 +0800 Subject: [PATCH 2/2] Fix trailing whitespace --- source/containers.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/containers.tex b/source/containers.tex index dde25ab464..e2b8b2e0b9 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -12587,7 +12587,7 @@ const set& y); template constexpr @\placeholder{synth-three-way-result}@ - operator<=>(const set& x, + operator<=>(const set& x, const set& y); template