readability-redundant-smartptr-get¶
查找并删除对智能指针的 .get()
方法的冗余调用。
示例
ptr.get()->Foo() ==> ptr->Foo()
*ptr.get() ==> *ptr
*ptr->get() ==> **ptr
if (ptr.get() == nullptr) ... => if (ptr == nullptr) ...
- IgnoreMacros¶
如果此选项设置为 true(默认值为 true),则检查不会警告宏内的调用。