Warning, /sdk/clazy/docs/checks/README-use-arrow-operator-instead-of-data.md is written in an unsupported language. File is not indexed.

0001 # use-arrow-operator-instead-of-data
0002 
0003 Finds code such as:
0004 
0005 ```
0006 QScopedPointer<T> ptr...;
0007 ptr.data()->someFunc();
0008 ```
0009 
0010 and suggests to use the arrow operator(`->`) directly instead:
0011 
0012 ```
0013 ptr->someFunc();
0014 ```