mirror of
https://github.com/reactos/CMake.git
synced 2025-01-19 09:54:02 +00:00
618fb23fc9
Use clang-tidy's performance-unnecessary-value-param checker to find value parameter declarations of expensive to copy types that are not modified inside the function. Ignore findings in kwsys. After applying the fix-its, manually change `const T&` to `T const&`.