Skip to content

Commit bbf9d13

Browse files
authored
Merge pull request #790 from boostorg/fully-qualify-make-zip-iterator
Fully qualify make_zip_iterator() in transform()
2 parents 509ebe4 + ffd3f2f commit bbf9d13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/boost/compute/algorithm/transform.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ inline OutputIterator transform(InputIterator1 first1,
7373
difference_type n = std::distance(first1, last1);
7474

7575
return transform(
76-
make_zip_iterator(boost::make_tuple(first1, first2)),
77-
make_zip_iterator(boost::make_tuple(last1, first2 + n)),
76+
::boost::compute::make_zip_iterator(boost::make_tuple(first1, first2)),
77+
::boost::compute::make_zip_iterator(boost::make_tuple(last1, first2 + n)),
7878
result,
7979
detail::unpack(op),
8080
queue

0 commit comments

Comments
 (0)