rename_check.py misc-move-const-arg performance-move-const-arg
rename_check.py misc-noexcept-move-constructor performance-noexcept-move-constructor
Details
Diff Detail
- Repository
- rCTE Clang Tools Extra
Event Timeline
Found one possible problem. Once fixed, LG!
| clang-tidy/hicpp/HICPPTidyModule.cpp | ||
|---|---|---|
| 33 | Don't you need to add performance module to link to the HICPP module to avoid link errors? | |
| clang-tidy/performance/MoveConstArgCheck.h | ||
| 19 | Is there any specific reason to rename this class? I am ok with the change, just wondering. | |
| clang-tidy/hicpp/HICPPTidyModule.cpp | ||
|---|---|---|
| 33 | Indeed. I should probably teach the script to do this ;) | |
| clang-tidy/performance/MoveConstArgCheck.h | ||
| 19 | The reason is to make the class name consistent with the check name (which is the case for all checks added by the add_new_check script, but not the case for some checks that predate this script). | |
Don't you need to add performance module to link to the HICPP module to avoid link errors?