Upgrade docker image & clang-format
All threads resolved!
All threads resolved!
- Docker image updated to Ubuntu 22.04LTS
- Clang-format is now
clang-format-14
(the default version from Ubuntu 22.04). With this new version, lambdas are sometimes badly indented => this has been fixed.
Merge request reports
Activity
Filter activity
requested review from @acrovato
assigned to @rboman
- Resolved by Boman Romain
Are you ok with breaking lines in lambdas like this:
tbb::parallel_for_each( mat->tag->elems.begin(), mat->tag->elems.end(), [&](Element *e) { ... } );
instead of
tbb::parallel_for_each(mat->tag->elems.begin(), mat->tag->elems.end(), [&](Element *e) { ... });
This is a little less compact... but I have not found a way to add a specific rule in clang-format.
If it is okay for you, then it is fine for me.
mentioned in commit 97b06f41
Please register or sign in to reply