aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Martins <smartins@kde.org>2019-05-08 10:46:12 +0100
committerSergio Martins <smartins@kde.org>2019-05-08 10:46:12 +0100
commit9c8ade0c72a9ca371a0333bccdc297dc20f0643f (patch)
tree1bb45d153eef139d355b1f904a4d4dc84cad01f5
parentc5914fc2a2a3b99df49aaef9e3105135a64c517d (diff)
range-loop: Specify in the README that we have a fixit for adding qAsConst
BUG: 407323
-rw-r--r--docs/checks/README-range-loop.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/checks/README-range-loop.md b/docs/checks/README-range-loop.md
index 1721b4d9..97ccaa51 100644
--- a/docs/checks/README-range-loop.md
+++ b/docs/checks/README-range-loop.md
@@ -12,6 +12,4 @@ Also warns if you're passing structs with non-trivial copy-ctor or non-trivial d
const-ref so that the copy-ctor and dtor don't get called.
#### Fixits
-This check supports adding missing `&` or `const-&` with:
-
- export CLAZY_FIXIT="fix-range-loop-add-ref"
+This check supports adding missing `&`, `const-&` or `qAsConst`.