Skip to content

Commit d3b8c17

Browse files
committed
sync
1 parent 13c1433 commit d3b8c17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang-tools-extra/docs/ReleaseNotes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ New checks
133133
- New :doc:`performance-lost-std-move
134134
<clang-tidy/checks/performance/lost-std-move>` check.
135135

136-
Searches for lost ``std::move()``.
136+
Warns if copy constructor is used instead of ``std::move()``.
137137

138138
- New :doc:`readability-ambiguous-smartptr-reset-call
139139
<clang-tidy/checks/readability/ambiguous-smartptr-reset-call>` check.

clang-tools-extra/docs/clang-tidy/checks/performance/lost-std-move.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
performance-lost-std-move
44
=========================
55

6-
The check warns if copy constructor is used instead of std::move().
6+
Warns if copy constructor is used instead of ``std::move()``.
77

88
.. code-block:: c++
99

0 commit comments

Comments
 (0)