We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c1433 commit d3b8c17Copy full SHA for d3b8c17
clang-tools-extra/docs/ReleaseNotes.rst
@@ -133,7 +133,7 @@ New checks
133
- New :doc:`performance-lost-std-move
134
<clang-tidy/checks/performance/lost-std-move>` check.
135
136
- Searches for lost ``std::move()``.
+ Warns if copy constructor is used instead of ``std::move()``.
137
138
- New :doc:`readability-ambiguous-smartptr-reset-call
139
<clang-tidy/checks/readability/ambiguous-smartptr-reset-call>` check.
clang-tools-extra/docs/clang-tidy/checks/performance/lost-std-move.rst
@@ -3,7 +3,7 @@
3
performance-lost-std-move
4
=========================
5
6
-The check warns if copy constructor is used instead of std::move().
+Warns if copy constructor is used instead of ``std::move()``.
7
8
.. code-block:: c++
9
0 commit comments