diff --git a/source/text.tex b/source/text.tex index 9dc9b8e695..22990970cf 100644 --- a/source/text.tex +++ b/source/text.tex @@ -3981,26 +3981,26 @@ \begin{codeblock} namespace std { template> - 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}