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
12 changes: 6 additions & 6 deletions source/text.tex
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@
collate = 0x010, ctype = 0x020,
monetary = 0x040, numeric = 0x080,
time = 0x100, messages = 0x200,
all = collate | ctype | monetary | numeric | time | messages;
all = collate | ctype | monetary | numeric | time | messages;

// \ref{locale.cons}, construct/copy/destroy
locale() noexcept;
Expand Down Expand Up @@ -3226,7 +3226,7 @@

\indexlibrarymember{numpunct}{grouping}%
\begin{itemdecl}
string grouping() const;
string grouping() const;
\end{itemdecl}

\begin{itemdescr}
Expand Down Expand Up @@ -3544,11 +3544,11 @@

explicit time_get(size_t refs = 0);

dateorder date_order() const { return do_date_order(); }
dateorder date_order() const { return do_date_order(); }
iter_type get_time(iter_type s, iter_type end, ios_base& f,
ios_base::iostate& err, tm* t) const;
ios_base::iostate& err, tm* t) const;
iter_type get_date(iter_type s, iter_type end, ios_base& f,
ios_base::iostate& err, tm* t) const;
ios_base::iostate& err, tm* t) const;
iter_type get_weekday(iter_type s, iter_type end, ios_base& f,
ios_base::iostate& err, tm* t) const;
iter_type get_monthname(iter_type s, iter_type end, ios_base& f,
Expand All @@ -3565,7 +3565,7 @@

protected:
~time_get();
virtual dateorder do_date_order() const;
virtual dateorder do_date_order() const;
virtual iter_type do_get_time(iter_type s, iter_type end, ios_base&,
ios_base::iostate& err, tm* t) const;
virtual iter_type do_get_date(iter_type s, iter_type end, ios_base&,
Expand Down