We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe07f4 commit 2f1e9ccCopy full SHA for 2f1e9cc
thrust/system/detail/sequential/partition.h
@@ -95,7 +95,8 @@ __host__ __device__
95
{
96
if(wrapped_pred(*next))
97
98
- iter_swap(first, next);
+ // Fully qualify name to disambiguate overloads found via ADL.
99
+ ::thrust::system::detail::sequential::iter_swap(first, next);
100
++first;
101
}
102
@@ -143,7 +144,8 @@ __host__ __device__
143
144
145
if(wrapped_pred(*stencil_first))
146
147
148
149
150
151
0 commit comments