aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/manuallevel/README-qstring-varargs.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/manuallevel/README-qstring-varargs.md')
-rw-r--r--src/checks/manuallevel/README-qstring-varargs.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/checks/manuallevel/README-qstring-varargs.md b/src/checks/manuallevel/README-qstring-varargs.md
deleted file mode 100644
index aa029e46..00000000
--- a/src/checks/manuallevel/README-qstring-varargs.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# qstring-varagars
-
-This implements the equivalent of `-Wnon-pod-varargs` but only for `QString`.
-
-This check is disabled by default and is only useful in cases where you don't want
-to enable `-Wnon-pod-varargs`. For example on projects with thousands of benign warnings
-(like with CString), where you might only want to fix the `QString` cases.
-
-#### Example
- QString s = (...)
- LogError("error %s", s);
-
-