Skip to content

Commit dc5928b

Browse files
[vector.bool.fmt][container.adaptors.format] Add missing constexpr and other missed edits (#8768)
Fixes edits from P3391R2 missed by commit cc63c64 .
1 parent cda7c18 commit dc5928b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

source/containers.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10735,7 +10735,7 @@
1073510735
parse(ParseContext& ctx);
1073610736

1073710737
template<class FormatContext>
10738-
typename FormatContext::iterator
10738+
constexpr typename FormatContext::iterator
1073910739
format(const T& ref, FormatContext& ctx) const;
1074010740
};
1074110741
}
@@ -10756,7 +10756,7 @@
1075610756
\indexlibrarymember{format}{formatter}%
1075710757
\begin{itemdecl}
1075810758
template<class FormatContext>
10759-
typename FormatContext::iterator
10759+
constexpr typename FormatContext::iterator
1076010760
format(const T& ref, FormatContext& ctx) const;
1076110761
\end{itemdecl}
1076210762

@@ -20308,7 +20308,7 @@
2030820308
\tcode{queue},
2030920309
\tcode{priority_queue}, and
2031020310
\tcode{stack},
20311-
the library provides the following formatter specialization
20311+
the library provides the following constexpr-enabled formatter specialization
2031220312
where \tcode{\placeholder{adaptor-type}} is the name of the template:
2031320313

2031420314
\indexlibraryglobal{formatter}%
@@ -20330,7 +20330,7 @@
2033020330
parse(ParseContext& ctx);
2033120331

2033220332
template<class FormatContext>
20333-
typename FormatContext::iterator
20333+
constexpr typename FormatContext::iterator
2033420334
format(@\exposid{maybe-const-adaptor}@& r, FormatContext& ctx) const;
2033520335
};
2033620336
}
@@ -20352,7 +20352,7 @@
2035220352
\indexlibrarymember{format}{formatter}%
2035320353
\begin{itemdecl}
2035420354
template<class FormatContext>
20355-
typename FormatContext::iterator
20355+
constexpr typename FormatContext::iterator
2035620356
format(@\exposid{maybe-const-adaptor}@& r, FormatContext& ctx) const;
2035720357
\end{itemdecl}
2035820358

0 commit comments

Comments
 (0)