dwww Home | Show directory contents | Find package

# use-arrow-operator-instead-of-data

Finds code such as:

```
QScopedPointer<T> ptr...;
ptr.data()->someFunc();
```

and suggests to use the arrow operator(`->`) directly instead:

```
ptr->someFunc();
```

Generated by dwww version 1.15 on Mon Jun 24 14:13:29 CEST 2024.