Skip to content
Merged
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/basic.tex
Original file line number Diff line number Diff line change
Expand Up @@ -7475,7 +7475,7 @@
double d2 = d1;
double d1 = fd();
\end{codeblock}
Both \tcode{d1} and \tcode {d2} can be initialized
Both \tcode{d1} and \tcode{d2} can be initialized
either statically or dynamically.
If \tcode{d1} is initialized statically and \tcode{d2} dynamically,
both variables are initialized to \tcode{1.0};
Expand Down
4 changes: 2 additions & 2 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -23428,7 +23428,7 @@
\item
the empty parameter pack, if \exposid{rank_} equals zero;
\item
\tcode otherwise, \tcode{0zu}, if \exposid{rank_} equals one;
otherwise, \tcode{0zu}, if \exposid{rank_} equals one;
\item
otherwise, the parameter pack \tcode{0zu}, \tcode{1zu}, \ldots, \tcode{\exposid{rank_}- 1}.
\end{itemize}
Expand Down Expand Up @@ -24075,7 +24075,7 @@
\item
the empty parameter pack, if \exposid{rank_} equals zero;
\item
\tcode otherwise, \tcode{0zu}, if \exposid{rank_} equals one;
otherwise, \tcode{0zu}, if \exposid{rank_} equals one;
\item
otherwise, the parameter pack \tcode{0zu}, \tcode{1zu}, \ldots, \tcode{\exposid{rank_}- 1}.
\end{itemize}
Expand Down
8 changes: 4 additions & 4 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -17490,17 +17490,17 @@
\end{itemize}

\pnum
If \tcode V is a specialization of \tcode{basic_vec}, let \tcode{Abi1} denote
If \tcode{V} is a specialization of \tcode{basic_vec}, let \tcode{Abi1} denote
an ABI tag such that \tcode{basic_vec<T, Abi1>::\brk{}size()} equals
\tcode{V::size()}.
If \tcode V is a specialization of \tcode{basic_mask}, let \tcode{Abi1}
If \tcode{V} is a specialization of \tcode{basic_mask}, let \tcode{Abi1}
denote an ABI tag such that \tcode{basic_mask<sizeof(T),
Abi1>::\brk{}size()} equals \tcode{V::size()}.

\pnum
Where present, the member typedef \tcode{type} names \tcode{basic_vec<T, Abi1>}
if \tcode V is a specialization of \tcode{basic_vec} or
\tcode{basic_mask<sizeof(T), Abi1>} if \tcode V is a specialization of
if \tcode{V} is a specialization of \tcode{basic_vec} or
\tcode{basic_mask<sizeof(T), Abi1>} if \tcode{V} is a specialization of
\tcode{basic_mask}.
\end{itemdescr}

Expand Down
Loading