aboutsummaryrefslogtreecommitdiffstats
path: root/docs/checks/README-qstring-varargs.md
blob: aa029e4649fa3ae9e5a9425fe0decf75f238639f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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);