We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
performance-move-const-arg
For more details on this check:
https://clang.llvm.org/extra/clang-tidy/checks/performance/move-const-arg.html
The text was updated successfully, but these errors were encountered:
[CodeHealth] Apply performance-move-const-arg
1d685ef
This check has detected a few places where the use of `std::move` has been completely misleading. In one of them we are potentially incurring in a bug, as we are moving a shared callback that is being used in a loop. https://clang.llvm.org/extra/clang-tidy/checks/performance/move-const-arg.html Resolves brave/brave-browser#42230
6ff6937
brave/brave-core@4ffbda2
cdesouza-chromium
Successfully merging a pull request may close this issue.
Description
For more details on this check:
https://clang.llvm.org/extra/clang-tidy/checks/performance/move-const-arg.html
The text was updated successfully, but these errors were encountered: