Ignore false positives related to matching parameters of non
coroutine functions and increase issue detection for cases
involving type aliases with references.
Fixes: #64915
Differential D158665
[clang-tidy] Improve cppcoreguidelines-avoid-reference-coroutine-parameters check PiotrZSL on Aug 23 2023, 1:12 PM. Authored by
Details Ignore false positives related to matching parameters of non Fixes: #64915
Diff Detail
Event TimelineComment Actions Thanks!
Comment Actions I'm pushing this in current state, if you want to change something after that, fell free to do it. |
Can we do this by matching if any parameter is of reference type, rather than relying on the logic living in check (I wrote this originally, although perhaps this would be an improvement). Happy to take this up as a followup...