Skip to content

Commit 2725607

Browse files
committed
fixup! modernize-use-equals-default
1 parent c9af1aa commit 2725607

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

thrust/thrust/detail/contiguous_storage.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ class contiguous_storage
148148

149149
_CCCL_HOST_DEVICE void uninitialized_fill_n(iterator first, size_type n, const value_type& value);
150150

151+
_CCCL_EXEC_CHECK_DISABLE
151152
template <typename InputIterator>
152153
_CCCL_HOST_DEVICE iterator uninitialized_copy(InputIterator first, InputIterator last, iterator result);
153154

thrust/thrust/detail/contiguous_storage.inl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ contiguous_storage<T, Alloc>::uninitialized_fill_n(iterator first, size_type n,
181181
fill_construct_range(m_allocator, first.base(), n, x);
182182
} // end contiguous_storage::uninitialized_fill()
183183

184+
_CCCL_EXEC_CHECK_DISABLE
184185
template <typename T, typename Alloc>
185186
template <typename System, typename InputIterator>
186187
_CCCL_HOST_DEVICE typename contiguous_storage<T, Alloc>::iterator contiguous_storage<T, Alloc>::uninitialized_copy(
@@ -189,6 +190,7 @@ _CCCL_HOST_DEVICE typename contiguous_storage<T, Alloc>::iterator contiguous_sto
189190
return iterator(copy_construct_range(from_system, m_allocator, first, last, result.base()));
190191
} // end contiguous_storage::uninitialized_copy()
191192

193+
_CCCL_EXEC_CHECK_DISABLE
192194
template <typename T, typename Alloc>
193195
template <typename InputIterator>
194196
_CCCL_HOST_DEVICE typename contiguous_storage<T, Alloc>::iterator
@@ -200,6 +202,7 @@ contiguous_storage<T, Alloc>::uninitialized_copy(InputIterator first, InputItera
200202
return iterator(copy_construct_range(from_system, m_allocator, first, last, result.base()));
201203
} // end contiguous_storage::uninitialized_copy()
202204

205+
_CCCL_EXEC_CHECK_DISABLE
203206
template <typename T, typename Alloc>
204207
template <typename System, typename InputIterator, typename Size>
205208
_CCCL_HOST_DEVICE typename contiguous_storage<T, Alloc>::iterator contiguous_storage<T, Alloc>::uninitialized_copy_n(
@@ -208,6 +211,7 @@ _CCCL_HOST_DEVICE typename contiguous_storage<T, Alloc>::iterator contiguous_sto
208211
return iterator(copy_construct_range_n(from_system, m_allocator, first, n, result.base()));
209212
} // end contiguous_storage::uninitialized_copy_n()
210213

214+
_CCCL_EXEC_CHECK_DISABLE
211215
template <typename T, typename Alloc>
212216
template <typename InputIterator, typename Size>
213217
_CCCL_HOST_DEVICE typename contiguous_storage<T, Alloc>::iterator

0 commit comments

Comments
 (0)