Skip to content

Commit 15186e7

Browse files
frederick-vs-jatkoeppe
authored andcommitted
[text], [numerics], [exec] Remove remaining typename in aliases
1 parent 3b14ec1 commit 15186e7

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

source/exec.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5390,7 +5390,7 @@
53905390

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

53955395
@\exposid{alloc-t}@ @\exposid{alloc}@; // \expos
53965396
@\exposid{ssource-t}@ @\exposid{ssource}@; // \expos
@@ -5905,7 +5905,7 @@
59055905

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

59105910
@\exposid{alloc-t}@ @\exposid{alloc}@; // \expos
59115911
@\exposid{op-t}@ @\exposid{op}@; // \expos

source/numerics.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13012,7 +13012,7 @@
1301213012
struct mapping {
1301313013
private:
1301413014
using @\exposid{nested-mapping-type}@ =
13015-
typename Layout::template mapping<@\exposid{transpose-extents-t}@<Extents>>; // \expos
13015+
Layout::template mapping<@\exposid{transpose-extents-t}@<Extents>>; // \expos
1301613016

1301713017
public:
1301813018
using extents_type = Extents;

source/text.tex

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10842,10 +10842,8 @@
1084210842
template<class BidirectionalIterator>
1084310843
class sub_match : public pair<BidirectionalIterator, BidirectionalIterator> {
1084410844
public:
10845-
using value_type =
10846-
typename iterator_traits<BidirectionalIterator>::value_type;
10847-
using difference_type =
10848-
typename iterator_traits<BidirectionalIterator>::difference_type;
10845+
using value_type = iterator_traits<BidirectionalIterator>::value_type;
10846+
using difference_type = iterator_traits<BidirectionalIterator>::difference_type;
1084910847
using iterator = BidirectionalIterator;
1085010848
using string_type = basic_string<value_type>;
1085110849

@@ -11171,12 +11169,10 @@
1117111169
using reference = value_type&;
1117211170
using const_iterator = @\impdefx{type of \tcode{match_results::const_iterator}}@;
1117311171
using iterator = const_iterator;
11174-
using difference_type =
11175-
typename iterator_traits<BidirectionalIterator>::difference_type;
11172+
using difference_type = iterator_traits<BidirectionalIterator>::difference_type;
1117611173
using size_type = allocator_traits<Allocator>::size_type;
1117711174
using allocator_type = Allocator;
11178-
using char_type =
11179-
typename iterator_traits<BidirectionalIterator>::value_type;
11175+
using char_type = iterator_traits<BidirectionalIterator>::value_type;
1118011176
using string_type = basic_string<char_type>;
1118111177

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

0 commit comments

Comments
 (0)