use-arrow-operator-instead-of-data
July 23, 2021 ยท View on GitHub
Finds code such as:
QScopedPointer<T> ptr...;
ptr.data()->someFunc();
and suggests to use the arrow operator(->) directly instead:
ptr->someFunc();
July 23, 2021 ยท View on GitHub
Finds code such as:
QScopedPointer<T> ptr...;
ptr.data()->someFunc();
and suggests to use the arrow operator(->) directly instead:
ptr->someFunc();