@@ -138,9 +138,9 @@ namespace pcl
138138 thrust::counting_iterator<int > cbeg (0 );
139139 thrust::counting_iterator<int > cend = cbeg + thrust::distance (beg, end);
140140
141- thrust::tuple<float , int > t = transform_reduce (
142- make_zip_iterator (thrust::make_tuple (beg, cbeg)),
143- make_zip_iterator (thrust::make_tuple (end, cend)),
141+ thrust::tuple<float , int > t = thrust:: transform_reduce (
142+ thrust:: make_zip_iterator (thrust::make_tuple (beg, cbeg)),
143+ thrust:: make_zip_iterator (thrust::make_tuple (end, cend)),
144144 unop, init, binary);
145145
146146 return thrust::get<1 >(t);
@@ -194,11 +194,11 @@ void pcl::device::PointStream::computeInitalSimplex()
194194 simplex.x1 = tr (p1); simplex.x2 = tr (p2); simplex.x3 = tr (p3); simplex.x4 = tr (p4);
195195 simplex.i1 = minx; simplex.i2 = maxx; simplex.i3 = maxl; simplex.i4 = maxp;
196196
197- float maxy = transform_reduce (beg, end, Y (), std::numeric_limits<float >::min (), thrust::maximum<float >());
198- float miny = transform_reduce (beg, end, Y (), std::numeric_limits<float >::max (), thrust::minimum<float >());
197+ float maxy = thrust:: transform_reduce (beg, end, Y (), std::numeric_limits<float >::min (), thrust::maximum<float >());
198+ float miny = thrust:: transform_reduce (beg, end, Y (), std::numeric_limits<float >::max (), thrust::minimum<float >());
199199
200- float maxz = transform_reduce (beg, end, Z (), std::numeric_limits<float >::min (), thrust::maximum<float >());
201- float minz = transform_reduce (beg, end, Z (), std::numeric_limits<float >::max (), thrust::minimum<float >());
200+ float maxz = thrust:: transform_reduce (beg, end, Z (), std::numeric_limits<float >::min (), thrust::maximum<float >());
201+ float minz = thrust:: transform_reduce (beg, end, Z (), std::numeric_limits<float >::max (), thrust::minimum<float >());
202202
203203 float dx = (p2.x - p1.x );
204204 float dy = (maxy - miny);
0 commit comments