aboutsummaryrefslogtreecommitdiffstats
path: root/docs/checks/README-empty-qstringliteral.md
blob: 3c78ba6797cc7e3101c282161aa1df37373e4de6 (plain)
1
2
3
4
5
6
# empty-qstringliteral

Suggests to use an empty `QString` instead of an empty `QStringLiteral`.
The later causes unneeded code bloat.

You should use `QString()` instead of `QStringLiteral()` and use `QString("")` instead of `QStringLiteral("")`.