Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion source/meta.tex
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
template<class T>
struct @\exposidnc{cw-fixed-value}@; // \expos

template<@\exposidnc{cw-fixed-value}@ X, class = typename decltype(X)::@\exposid{type}@>
template<@\exposidnc{cw-fixed-value}@ X, class = decltype(X)::@\exposid{type}@>
struct constant_wrapper;

template<class T>
Expand Down
6 changes: 3 additions & 3 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -16497,8 +16497,8 @@
\begin{codeblock}
namespace std::simd {
// \ref{simd.traits}, type traits
template<class T, class U = typename T::value_type> struct alignment;
template<class T, class U = typename T::value_type>
template<class T, class U = T::value_type> struct alignment;
template<class T, class U = T::value_type>
constexpr size_t @\libmember{alignment_v}{simd}@ = alignment<T, U>::value;

template<class T, class V> struct rebind { using type = @\seebelow@; };
Expand Down Expand Up @@ -17142,7 +17142,7 @@

\indexlibrarymember{alignment}{simd}
\begin{itemdecl}
template<class T, class U = typename T::value_type> struct alignment { @\seebelow@ };
template<class T, class U = T::value_type> struct alignment { @\seebelow@ };
\end{itemdecl}

\begin{itemdescr}
Expand Down
10 changes: 5 additions & 5 deletions source/text.tex
Original file line number Diff line number Diff line change
Expand Up @@ -7105,7 +7105,7 @@

\begin{codeblock}
template<class T, class Context,
class Formatter = typename Context::template formatter_type<remove_const_t<T>>>
class Formatter = Context::template formatter_type<remove_const_t<T>>>
concept @\defexposconcept{formattable-with}@ = // \expos
@\libconcept{semiregular}@<Formatter> &&
requires(Formatter& f, const Formatter& cf, T&& t, Context fc,
Expand Down Expand Up @@ -9561,7 +9561,7 @@

// \ref{re.regiter}, class template \tcode{regex_iterator}
template<class BidirectionalIterator,
class charT = typename iterator_traits<BidirectionalIterator>::value_type,
class charT = iterator_traits<BidirectionalIterator>::value_type,
class traits = regex_traits<charT>>
class regex_iterator;

Expand All @@ -9572,7 +9572,7 @@

// \ref{re.tokiter}, class template \tcode{regex_token_iterator}
template<class BidirectionalIterator,
class charT = typename iterator_traits<BidirectionalIterator>::value_type,
class charT = iterator_traits<BidirectionalIterator>::value_type,
class traits = regex_traits<charT>>
class regex_token_iterator;

Expand Down Expand Up @@ -12254,7 +12254,7 @@
\begin{codeblock}
namespace std {
template<class BidirectionalIterator,
class charT = typename iterator_traits<BidirectionalIterator>::value_type,
class charT = iterator_traits<BidirectionalIterator>::value_type,
class traits = regex_traits<charT>>
class regex_iterator {
public:
Expand Down Expand Up @@ -12525,7 +12525,7 @@
\begin{codeblock}
namespace std {
template<class BidirectionalIterator,
class charT = typename iterator_traits<BidirectionalIterator>::value_type,
class charT = iterator_traits<BidirectionalIterator>::value_type,
class traits = regex_traits<charT>>
class regex_token_iterator {
public:
Expand Down
4 changes: 2 additions & 2 deletions source/time.tex
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
template<class Rep, class Period = ratio<1>> class duration;

// \ref{time.point}, class template \tcode{time_point}
template<class Clock, class Duration = typename Clock::duration> class time_point;
template<class Clock, class Duration = Clock::duration> class time_point;
}

namespace std {
Expand Down Expand Up @@ -2209,7 +2209,7 @@
\indexlibraryglobal{time_point}%
\begin{codeblock}
namespace std::chrono {
template<class Clock, class Duration = typename Clock::duration>
template<class Clock, class Duration = Clock::duration>
class time_point {
public:
using clock = Clock;
Expand Down