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
4 changes: 2 additions & 2 deletions source/exec.tex
Original file line number Diff line number Diff line change
Expand Up @@ -5390,7 +5390,7 @@

private:
using @\exposid{alloc-t}@ = // \expos
typename allocator_traits<Alloc>::template rebind_alloc<@\exposid{spawn-future-state}@>;
allocator_traits<Alloc>::template rebind_alloc<@\exposid{spawn-future-state}@>;

@\exposid{alloc-t}@ @\exposid{alloc}@; // \expos
@\exposid{ssource-t}@ @\exposid{ssource}@; // \expos
Expand Down Expand Up @@ -5905,7 +5905,7 @@

private:
using @\exposid{alloc-t}@ = // \expos
typename allocator_traits<Alloc>::template rebind_alloc<@\exposid{spawn-state}@>;
allocator_traits<Alloc>::template rebind_alloc<@\exposid{spawn-state}@>;

@\exposid{alloc-t}@ @\exposid{alloc}@; // \expos
@\exposid{op-t}@ @\exposid{op}@; // \expos
Expand Down
2 changes: 1 addition & 1 deletion source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -13012,7 +13012,7 @@
struct mapping {
private:
using @\exposid{nested-mapping-type}@ =
typename Layout::template mapping<@\exposid{transpose-extents-t}@<Extents>>; // \expos
Layout::template mapping<@\exposid{transpose-extents-t}@<Extents>>; // \expos

public:
using extents_type = Extents;
Expand Down
12 changes: 4 additions & 8 deletions source/text.tex
Original file line number Diff line number Diff line change
Expand Up @@ -10842,10 +10842,8 @@
template<class BidirectionalIterator>
class sub_match : public pair<BidirectionalIterator, BidirectionalIterator> {
public:
using value_type =
typename iterator_traits<BidirectionalIterator>::value_type;
using difference_type =
typename iterator_traits<BidirectionalIterator>::difference_type;
using value_type = iterator_traits<BidirectionalIterator>::value_type;
using difference_type = iterator_traits<BidirectionalIterator>::difference_type;
using iterator = BidirectionalIterator;
using string_type = basic_string<value_type>;

Expand Down Expand Up @@ -11171,12 +11169,10 @@
using reference = value_type&;
using const_iterator = @\impdefx{type of \tcode{match_results::const_iterator}}@;
using iterator = const_iterator;
using difference_type =
typename iterator_traits<BidirectionalIterator>::difference_type;
using difference_type = iterator_traits<BidirectionalIterator>::difference_type;
using size_type = allocator_traits<Allocator>::size_type;
using allocator_type = Allocator;
using char_type =
typename iterator_traits<BidirectionalIterator>::value_type;
using char_type = iterator_traits<BidirectionalIterator>::value_type;
using string_type = basic_string<char_type>;

// \ref{re.results.const}, construct/copy/destroy
Expand Down