aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/manuallevel/README-qhash-with-char-pointer-key.md
diff options
context:
space:
mode:
authorSergio Martins <smartins@kde.org>2018-05-15 22:14:50 +0100
committerSergio Martins <smartins@kde.org>2018-05-15 22:52:15 +0100
commitdcac97b866c83d6645e3bc4af1f42b255f81d9a3 (patch)
tree02b8f6ba3279fd6df932d8bec8f2125052a919c0 /src/checks/manuallevel/README-qhash-with-char-pointer-key.md
parentfa6f5d8e206eca0823cfa5030abb5c824f7685ac (diff)
Make it easier to link to READMEs by removing the level name.
After make install they will still be installed to a level0, 1, 2 sub-folder, as the cmake instructions are generated by generate.py BUG: 394237
Diffstat (limited to 'src/checks/manuallevel/README-qhash-with-char-pointer-key.md')
-rw-r--r--src/checks/manuallevel/README-qhash-with-char-pointer-key.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/checks/manuallevel/README-qhash-with-char-pointer-key.md b/src/checks/manuallevel/README-qhash-with-char-pointer-key.md
deleted file mode 100644
index 7d475105..00000000
--- a/src/checks/manuallevel/README-qhash-with-char-pointer-key.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# qhash-with-char-pointer-key
-
-Finds cases of `QHash<const char *, T>`. It's error-prone as the key is just compared
-by the address of the string literal, and not the string literal itself.
-
-Check is disabled by default as there are valid uses-cases.