Skip to content
Merged
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
32 changes: 16 additions & 16 deletions source/text.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3981,26 +3981,26 @@
\begin{codeblock}
namespace std {
template<class charT, class OutputIterator = ostreambuf_iterator<charT>>
class time_put : public locale::facet {
public:
using @\libmember{char_type}{time_put}@ = charT;
using @\libmember{iter_type}{time_put}@ = OutputIterator;
class time_put : public locale::facet {
public:
using @\libmember{char_type}{time_put}@ = charT;
using @\libmember{iter_type}{time_put}@ = OutputIterator;

explicit time_put(size_t refs = 0);
explicit time_put(size_t refs = 0);

// the following is implemented in terms of other member functions.
iter_type put(iter_type s, ios_base& f, char_type fill, const tm* tmb,
const charT* pattern, const charT* pat_end) const;
iter_type put(iter_type s, ios_base& f, char_type fill,
const tm* tmb, char format, char modifier = 0) const;
// the following is implemented in terms of other member functions.
iter_type put(iter_type s, ios_base& f, char_type fill, const tm* tmb,
const charT* pattern, const charT* pat_end) const;
iter_type put(iter_type s, ios_base& f, char_type fill,
const tm* tmb, char format, char modifier = 0) const;

static locale::id @\libmember{id}{time_put}@;
static locale::id @\libmember{id}{time_put}@;

protected:
~time_put();
virtual iter_type do_put(iter_type s, ios_base&, char_type, const tm* t,
char format, char modifier) const;
};
protected:
~time_put();
virtual iter_type do_put(iter_type s, ios_base&, char_type, const tm* t,
char format, char modifier) const;
};
}
\end{codeblock}

Expand Down
Loading