llvm-project
6c153e50 - [clang-tidy] Fix false positives with template in `misc-unconventional-assign-operator` check (#143292)

Commit
86 days ago
[clang-tidy] Fix false positives with template in `misc-unconventional-assign-operator` check (#143292) Fix false positives when copy assignment operator function in a template class returns the result of another assignment to `*this`, this check doesn't consider this situation that there will be a `BinaryOperator` for assignment rather than `CXXOperatorCallExpr` since `this`'s type is dependent. Closes #143237.
Author
Parents
Loading