This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Qualify calls to make_reverse_iterator
Unqualified calls to make_reverse_iterator would result in ADL ambiguities between std::make_reverse_iterator and thrust::make_reverse_iterator when the iterator argument is a std::vector<T>::iterator or other "std" type. Fix the problem and avoid ADL by changing the call to the qualified name thrust::make_reverse_iterator.
- Loading branch information