llvm-project/clang-tools-extra/docs/clang-tidy/checks/readability-uniqueptr-delet...

6 lines
227 B
ReStructuredText

readability-uniqueptr-delete-release
====================================
Replace ``delete <unique_ptr>.release()`` with ``<unique_ptr> = nullptr``.
The latter is shorter, simpler and does not require use of raw pointer APIs.