forked from OSchip/llvm-project
17 lines
316 B
ReStructuredText
17 lines
316 B
ReStructuredText
.. title:: clang-tidy - readability-redundant-smartptr-get
|
|
|
|
readability-redundant-smartptr-get
|
|
==================================
|
|
|
|
|
|
Find and remove redundant calls to smart pointer's ``.get()`` method.
|
|
|
|
Examples:
|
|
|
|
.. code:: c++
|
|
|
|
ptr.get()->Foo() ==> ptr->Foo()
|
|
*ptr.get() ==> *ptr
|
|
*ptr->get() ==> **ptr
|
|
|