Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3835,8 +3835,8 @@
\begin{itemdecl}
void merge(forward_list& x);
void merge(forward_list&& x);
template <class Compare> void merge(forward_list& x, Compare comp)
template <class Compare> void merge(forward_list&& x, Compare comp)
template <class Compare> void merge(forward_list& x, Compare comp);
template <class Compare> void merge(forward_list&& x, Compare comp);
\end{itemdecl}

\begin{itemdescr}
Expand Down
2 changes: 1 addition & 1 deletion source/future.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@

\indexlibrary{\idxcode{strstream}!destructor}%
\begin{itemdecl}
virtual ~strstream()
virtual ~strstream();
\end{itemdecl}

\begin{itemdescr}
Expand Down
14 changes: 7 additions & 7 deletions source/iostreams.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@

\indexlibrary{\idxcode{ios_base}!destructor}%
\begin{itemdecl}
~ios_base()
~ios_base();
\end{itemdecl}

\begin{itemdescr}
Expand Down Expand Up @@ -3480,7 +3480,7 @@

\indexlibrary{\idxcode{imbue}!\idxcode{basic_streambuf}}%
\begin{itemdecl}
void imbue(const locale&)
void imbue(const locale&);
\end{itemdecl}

\begin{itemdescr}
Expand Down Expand Up @@ -4674,7 +4674,7 @@
\indexlibrary{\idxcode{operator\shr}!\idxcode{basic_istream}}%
\begin{itemdecl}
basic_istream<charT,traits>& operator>>
(basic_istream<charT,traits>& (*pf)(basic_istream<charT,traits>&))
(basic_istream<charT,traits>& (*pf)(basic_istream<charT,traits>&));
\end{itemdecl}

\begin{itemdescr}
Expand Down Expand Up @@ -5052,7 +5052,7 @@
\indexlibrary{\idxcode{get}!\idxcode{basic_istream}}%
\indexlibrary{\idxcode{basic_istream}!\idxcode{get}}%
\begin{itemdecl}
basic_istream<charT,traits>& get(char_type* s, streamsize n)
basic_istream<charT,traits>& get(char_type* s, streamsize n);
\end{itemdecl}

\begin{itemdescr}
Expand Down Expand Up @@ -6318,7 +6318,7 @@
\indexlibrary{\idxcode{operator\shl}!\idxcode{basic_ostream}}%
\begin{itemdecl}
basic_ostream<charT,traits>& operator<<
(basic_ostream<charT,traits>& (*pf)(basic_ostream<charT,traits>&))
(basic_ostream<charT,traits>& (*pf)(basic_ostream<charT,traits>&));
\end{itemdecl}

\begin{itemdescr}
Expand All @@ -6339,7 +6339,7 @@
\indexlibrary{\idxcode{basic_ostream}!\idxcode{operator\shl}}%
\begin{itemdecl}
basic_ostream<charT,traits>& operator<<
(basic_ios<charT,traits>& (*pf)(basic_ios<charT,traits>&))
(basic_ios<charT,traits>& (*pf)(basic_ios<charT,traits>&));
\end{itemdecl}

\begin{itemdescr}
Expand All @@ -6361,7 +6361,7 @@
\indexlibrary{\idxcode{basic_ostream}!\idxcode{operator\shl}}%
\begin{itemdecl}
basic_ostream<charT,traits>& operator<<
(ios_base& (*pf)(ios_base&))
(ios_base& (*pf)(ios_base&));
\end{itemdecl}

\begin{itemdescr}
Expand Down
2 changes: 1 addition & 1 deletion source/strings.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2055,7 +2055,7 @@
\indexlibrary{\idxcode{push_back}!\idxcode{basic_string}}%
\indexlibrary{\idxcode{basic_string}!\idxcode{push_back}}%
\begin{itemdecl}
void push_back(charT c)
void push_back(charT c);
\end{itemdecl}

\begin{itemdescr}
Expand Down
2 changes: 1 addition & 1 deletion source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -5439,7 +5439,7 @@
template<class Y> explicit shared_ptr(Y* p);
template<class Y, class D> shared_ptr(Y* p, D d);
template<class Y, class D, class A> shared_ptr(Y* p, D d, A a);
template <class D> shared_ptr(nullptr_t p, D d)
template <class D> shared_ptr(nullptr_t p, D d);
template <class D, class A> shared_ptr(nullptr_t p, D d, A a);
template<class Y> shared_ptr(const shared_ptr<Y>& r, T* p) noexcept;
shared_ptr(const shared_ptr& r) noexcept;
Expand Down