Removed last trailing whitespace. Can't believe I missed it.

This commit is contained in:
Dan Moodie 2015-10-05 20:21:46 -04:00
parent e4184195a2
commit f332f98757

View File

@ -27,7 +27,7 @@ template<typename T> struct step_functor : public thrust::unary_function<int, in
int operator()(int x) const
{
int row = x / columns;
int idx = (row * step) + (x % columns)*channels;
int idx = (row * step) + (x % columns)*channels;
return idx;
}
};