| Issue | 177882 |
|---|---|
| Summary | Clang tidy: add a modernize check to use the explicit object parameter |
| Labels | clang |
| Assignees | |
| Reporter | rdong8 |
Before:
```cpp
struct S
{
auto foo() const -> void {}
};
```
After:
```cpp
struct S
{
auto foo(this S const &self) -> void {}
};
```
_______________________________________________ llvm-bugs mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
