Commit f9874f6 1 parent 57a8c5e commit f9874f6 Copy full SHA for f9874f6
File tree 6 files changed +6
-6
lines changed
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ class map
158
158
using mapped_type = T;
159
159
using value_type = std::pair<K, T>;
160
160
using size_type = detail::hamts::size_t ;
161
- using diference_type = std::ptrdiff_t ;
161
+ using difference_type = std::ptrdiff_t ;
162
162
using hasher = Hash;
163
163
using key_equal = Equal;
164
164
using reference = const value_type&;
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class map_transient : MemoryPolicy::transience_t::owner
51
51
using mapped_type = T;
52
52
using value_type = std::pair<K, T>;
53
53
using size_type = detail::hamts::size_t ;
54
- using diference_type = std::ptrdiff_t ;
54
+ using difference_type = std::ptrdiff_t ;
55
55
using hasher = Hash;
56
56
using key_equal = Equal;
57
57
using reference = const value_type&;
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ class set
73
73
public:
74
74
using value_type = T;
75
75
using size_type = detail::hamts::size_t ;
76
- using diference_type = std::ptrdiff_t ;
76
+ using difference_type = std::ptrdiff_t ;
77
77
using hasher = Hash;
78
78
using key_equal = Equal;
79
79
using reference = const T&;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class set_transient : MemoryPolicy::transience_t::owner
40
40
41
41
using value_type = T;
42
42
using size_type = detail::hamts::size_t ;
43
- using diference_type = std::ptrdiff_t ;
43
+ using difference_type = std::ptrdiff_t ;
44
44
using hasher = Hash;
45
45
using key_equal = Equal;
46
46
using reference = const T&;
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ class table
193
193
using mapped_type = T;
194
194
using value_type = T;
195
195
using size_type = detail::hamts::size_t ;
196
- using diference_type = std::ptrdiff_t ;
196
+ using difference_type = std::ptrdiff_t ;
197
197
using hasher = Hash;
198
198
using key_equal = Equal;
199
199
using reference = const value_type&;
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ class table_transient : MemoryPolicy::transience_t::owner
42
42
using mapped_type = T;
43
43
using value_type = T;
44
44
using size_type = detail::hamts::size_t ;
45
- using diference_type = std::ptrdiff_t ;
45
+ using difference_type = std::ptrdiff_t ;
46
46
using hasher = Hash;
47
47
using key_equal = Equal;
48
48
using reference = const value_type&;
You can’t perform that action at this time.
0 commit comments