Baranov Victor e9c8d42b89
[clang-tidy] misc-unused-using-decls: add correct handling of operator"" with template parametes (#129392)
Fixes false-positives when operator"" has template paremetes, e.g.
```cpp
template <char... Ts>
int operator""_r() {
    return {};
}
```
Closes https://github.com/llvm/llvm-project/issues/53444.

---------

Co-authored-by: Congcong Cai <congcongcai0907@163.com>
2025-03-03 13:14:27 +08:00
..