Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STYLE: Replace default capture
ParallelizeImageRegionRestrictDirection
Instead of capturing everything by reference (by default capture `&`), captured the parameter `restrictedDirection` by value. `restrictedDirection` is lightweight (it's an `unsigned int`), and it is not modified by the lambda, so there is no reason to capture it by reference.
- Loading branch information