Skip to content

Commit 81eaf24

Browse files
opensdhzygoloid
authored andcommitted
[lib] Fix ;s in itemdecls
One was missed from P1983R0
1 parent d4a00d6 commit 81eaf24

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

source/containers.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10275,7 +10275,7 @@
1027510275

1027610276
\indexlibrarymember{emplace}{priority_queue}%
1027710277
\begin{itemdecl}
10278-
template<class... Args> void emplace(Args&&... args)
10278+
template<class... Args> void emplace(Args&&... args);
1027910279
\end{itemdecl}
1028010280

1028110281
\begin{itemdescr}

source/iostreams.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12919,9 +12919,9 @@
1291912919

1292012920
\indexlibrarymember{compare}{path}%
1292112921
\begin{itemdecl}
12922-
int compare(const string_type& s) const
12922+
int compare(const string_type& s) const;
1292312923
int compare(basic_string_view<value_type> s) const;
12924-
int compare(const value_type* s) const
12924+
int compare(const value_type* s) const;
1292512925
\end{itemdecl}
1292612926

1292712927
\begin{itemdescr}

source/iterators.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5412,8 +5412,8 @@
54125412

54135413
\indexlibrarymember{operator{-}-}{counted_iterator}%
54145414
\begin{itemdecl}
5415-
constexpr counted_iterator& operator--();
5416-
requires @\libconcept{bidirectional_iterator}@<I>
5415+
constexpr counted_iterator& operator--()
5416+
requires @\libconcept{bidirectional_iterator}@<I>;
54175417
\end{itemdecl}
54185418

54195419
\begin{itemdescr}
@@ -6210,7 +6210,7 @@
62106210

62116211
\indexlibrarymember{operator*}{istreambuf_iterator}%
62126212
\begin{itemdecl}
6213-
charT operator*() const
6213+
charT operator*() const;
62146214
\end{itemdecl}
62156215

62166216
\begin{itemdescr}

source/ranges.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5124,7 +5124,7 @@
51245124

51255125
\indexlibraryctor{join_view::iterator}%
51265126
\begin{itemdecl}
5127-
constexpr @\exposid{iterator}@(@\exposid{Parent}@& parent, iterator_t<@\exposid{Base}@> outer)
5127+
constexpr @\exposid{iterator}@(@\exposid{Parent}@& parent, iterator_t<@\exposid{Base}@> outer);
51285128
\end{itemdecl}
51295129

51305130
\begin{itemdescr}

0 commit comments

Comments
 (0)