blob: 8d48fa192e69fd52c709031ee37604b0ca699b30 [file] [log] [blame]
.. title:: clang-tidy - misc-uniqueptr-reset-release
misc-uniqueptr-reset-release
============================
Find and replace ``unique_ptr::reset(release())`` with ``std::move()``.
Example:
.. code-block:: c++
std::unique_ptr<Foo> x, y;
x.reset(y.release()); -> x = std::move(y);
If ``y`` is already rvalue, ``std::move()`` is not added. ``x`` and ``y`` can
also be ``std::unique_ptr<Foo>*``.
Options
-------
.. option:: IncludeStyle
A string specifying which include-style is used, `llvm` or `google`. Default
is `llvm`.