Open llvmbot opened 5 years ago
Related to bug #26020, I ran
run-clang-tidy.py [...] -jN -fix -checks='-*,modernize-use-override,modernize-use-noexcept'
This resulted in changes to my code like:
Oddly, while override appears lots of times, the noexcept check managed to work somehow - even though the diagnostic for some throw() --> noexcept replacement appears multiple times, the diff happens once (as opposed to ending up with noexcepttttt).
Also occurs on Fedora with clang 15.0.7 with modernize-use-nodiscard
Extended Description
Related to bug #26020, I ran
run-clang-tidy.py [...] -jN -fix -checks='-*,modernize-use-override,modernize-use-noexcept'
This resulted in changes to my code like:
Oddly, while override appears lots of times, the noexcept check managed to work somehow - even though the diagnostic for some throw() --> noexcept replacement appears multiple times, the diff happens once (as opposed to ending up with noexcepttttt).