Skip to content

Commit 6bbf29b

Browse files
authored
[locale.time.put.general] Fix indentation (#9215)
1 parent 33eb029 commit 6bbf29b

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

source/text.tex

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3981,26 +3981,26 @@
39813981
\begin{codeblock}
39823982
namespace std {
39833983
template<class charT, class OutputIterator = ostreambuf_iterator<charT>>
3984-
class time_put : public locale::facet {
3985-
public:
3986-
using @\libmember{char_type}{time_put}@ = charT;
3987-
using @\libmember{iter_type}{time_put}@ = OutputIterator;
3984+
class time_put : public locale::facet {
3985+
public:
3986+
using @\libmember{char_type}{time_put}@ = charT;
3987+
using @\libmember{iter_type}{time_put}@ = OutputIterator;
39883988

3989-
explicit time_put(size_t refs = 0);
3989+
explicit time_put(size_t refs = 0);
39903990

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

3997-
static locale::id @\libmember{id}{time_put}@;
3997+
static locale::id @\libmember{id}{time_put}@;
39983998

3999-
protected:
4000-
~time_put();
4001-
virtual iter_type do_put(iter_type s, ios_base&, char_type, const tm* t,
4002-
char format, char modifier) const;
4003-
};
3999+
protected:
4000+
~time_put();
4001+
virtual iter_type do_put(iter_type s, ios_base&, char_type, const tm* t,
4002+
char format, char modifier) const;
4003+
};
40044004
}
40054005
\end{codeblock}
40064006

0 commit comments

Comments
 (0)