Warning, /sdk/clazy/docs/checks/README-qstring-varargs.md is written in an unsupported language. File is not indexed.

0001 # qstring-varagars
0002 
0003 This implements the equivalent of `-Wnon-pod-varargs` but only for `QString`.
0004 
0005 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 MFC's `CString`), where you might only want to fix the `QString` cases.
0006 
0007 Example
0008 ```
0009 QString s = (...)
0010 LogError("error %s", s);
0011 ```