Skip to content

Commit de25c4e

Browse files
authored
[containers] fix operator<=> format
1 parent 0201407 commit de25c4e

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

source/containers.tex

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6444,8 +6444,8 @@
64446444
template<class T, class Allocator>
64456445
constexpr bool operator==(const deque<T, Allocator>& x, const deque<T, Allocator>& y);
64466446
template<class T, class Allocator>
6447-
constexpr @\placeholder{synth-three-way-result}@<T> operator<=>(const deque<T, Allocator>& x,
6448-
@\itcorr@ const deque<T, Allocator>& y);
6447+
constexpr @\placeholder{synth-three-way-result}@<T>
6448+
operator<=>(const deque<T, Allocator>& x, const deque<T, Allocator>& y);
64496449

64506450
template<class T, class Allocator>
64516451
constexpr void swap(deque<T, Allocator>& x, deque<T, Allocator>& y)
@@ -6940,8 +6940,9 @@
69406940
constexpr bool operator==(const forward_list<T, Allocator>& x,
69416941
const forward_list<T, Allocator>& y);
69426942
template<class T, class Allocator>
6943-
constexpr @\placeholder{synth-three-way-result}@<T> operator<=>(const forward_list<T, Allocator>& x,
6944-
@\itcorr@ const forward_list<T, Allocator>& y);
6943+
constexpr @\placeholder{synth-three-way-result}@<T>
6944+
operator<=>(const forward_list<T, Allocator>& x,
6945+
const forward_list<T, Allocator>& y);
69456946

69466947
template<class T, class Allocator>
69476948
constexpr void swap(forward_list<T, Allocator>& x, forward_list<T, Allocator>& y)
@@ -8994,8 +8995,8 @@
89948995
template<class T, class Allocator>
89958996
constexpr bool operator==(const list<T, Allocator>& x, const list<T, Allocator>& y);
89968997
template<class T, class Allocator>
8997-
constexpr @\placeholder{synth-three-way-result}@<T> operator<=>(const list<T, Allocator>& x,
8998-
@\itcorr@ const list<T, Allocator>& y);
8998+
constexpr @\placeholder{synth-three-way-result}@<T>
8999+
operator<=>(const list<T, Allocator>& x, const list<T, Allocator>& y);
89999000

90009001
template<class T, class Allocator>
90019002
constexpr void swap(list<T, Allocator>& x, list<T, Allocator>& y)
@@ -9787,8 +9788,8 @@
97879788
template<class T, class Allocator>
97889789
constexpr bool operator==(const vector<T, Allocator>& x, const vector<T, Allocator>& y);
97899790
template<class T, class Allocator>
9790-
constexpr @\placeholder{synth-three-way-result}@<T> operator<=>(const vector<T, Allocator>& x,
9791-
@\itcorr@ const vector<T, Allocator>& y);
9791+
constexpr @\placeholder{synth-three-way-result}@<T>
9792+
operator<=>(const vector<T, Allocator>& x, const vector<T, Allocator>& y);
97929793

97939794
template<class T, class Allocator>
97949795
constexpr void swap(vector<T, Allocator>& x, vector<T, Allocator>& y)
@@ -12585,8 +12586,9 @@
1258512586
constexpr bool operator==(const set<Key, Compare, Allocator>& x,
1258612587
const set<Key, Compare, Allocator>& y);
1258712588
template<class Key, class Compare, class Allocator>
12588-
constexpr @\placeholder{synth-three-way-result}@<Key> operator<=>(const set<Key, Compare, Allocator>& x,
12589-
@\itcorr@ const set<Key, Compare, Allocator>& y);
12589+
constexpr @\placeholder{synth-three-way-result}@<Key>
12590+
operator<=>(const set<Key, Compare, Allocator>& x,
12591+
const set<Key, Compare, Allocator>& y);
1259012592

1259112593
template<class Key, class Compare, class Allocator>
1259212594
constexpr void swap(set<Key, Compare, Allocator>& x,

0 commit comments

Comments
 (0)