Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable
modernize-loop-convert
(#1356)
This is asking to convert loops like ```C++ for (auto it = exprs.rbegin(); it != exprs.rend(); ++it) ``` into ```C++ for (auto expr : std::ranges::reverse_view(exprs)) ``` However, seems that clang <16 can not compile the latter code So disable this check for now to unblock. If we want to upgrade clang versions, we can re-enable it.
- Loading branch information