Skip to content

Commit fd5556f

Browse files
author
Dmitry Razdoburdin
committed
linting
1 parent b5d8fef commit fd5556f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/common/transform.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ class Transform {
184184
void LaunchCPU(Functor func, HDV *...vectors) const {
185185
omp_ulong end = static_cast<omp_ulong>(*(range_.end()));
186186
SyncHost(vectors...);
187-
ParallelFor(end, n_threads_, [&](omp_ulong idx) { func(idx, std::true_type(), UnpackHDV(vectors)...); });
187+
ParallelFor(end, n_threads_, [&](omp_ulong idx) { func(idx, std::true_type(),
188+
UnpackHDV(vectors)...); });
188189
}
189190

190191
private:

0 commit comments

Comments
 (0)