revert thust::swap

This commit is contained in:
Li-Ta Lo 2022-02-08 12:18:26 -07:00
parent d6a6075bf0
commit c65ed17727

@ -28,7 +28,7 @@ template <typename T>
VTKM_EXEC_CONT void Swap(T& a, T& b)
{
using namespace thrust;
thrust::swap(a, b);
swap(a, b);
}
#elif defined(VTKM_HIP)
template <typename T>