Skip to content

Commit 62e4951

Browse files
committed
line 80
1 parent 4ae1247 commit 62e4951

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ Options
3939

4040
.. option:: StrictMode
4141

42-
A variable ``X`` can be referenced by another variable ``R``. In this case the last
43-
variable usage might be not from ``X``, but from ``R``. It is quite difficult to
44-
find in a large function, so if the plugin sees some ``R`` references ``X``, then
45-
it will not emit a warning for ``X`` not to provoke false positive. If you're
46-
sure that such references don't extend ``X`` lifetime and ready to handle possible
47-
false positives, then set `StrictMode` to `false`. Defaults to `true`.
42+
A variable ``X`` can be referenced by another variable ``R``. In this case
43+
the last variable usage might be not from ``X``, but from ``R``. It is quite
44+
difficult to find in a large function, so if the plugin sees some ``R``
45+
references ``X``, then it will not emit a warning for ``X`` not to provoke
46+
false positive. If you're sure that such references don't extend ``X``
47+
lifetime and ready to handle possible false positives, then set `StrictMode`
48+
to `false`. Defaults to `true`.

0 commit comments

Comments
 (0)