From 658a5b2b03e748224298e234703aa1d9826c54bc Mon Sep 17 00:00:00 2001 From: chrchr Date: Mon, 18 Mar 2024 15:03:50 +0100 Subject: [PATCH] Add support for QLatin1String --- cfg/qt.cfg | 16 ++++++++++++++++ test/cfg/qt.cpp | 2 ++ 2 files changed, 18 insertions(+) diff --git a/cfg/qt.cfg b/cfg/qt.cfg index 85402e64304..bcc24ae4b1b 100644 --- a/cfg/qt.cfg +++ b/cfg/qt.cfg @@ -5160,6 +5160,22 @@ + + + + + + + + + + + + + + + + diff --git a/test/cfg/qt.cpp b/test/cfg/qt.cpp index 607aacb554e..c80c157aa4a 100644 --- a/test/cfg/qt.cpp +++ b/test/cfg/qt.cpp @@ -724,4 +724,6 @@ void unusedVariable_qtContainers() // #10689 QMultiMap qmm; // cppcheck-suppress unusedVariable QQueue qq; + // cppcheck-suppress unusedVariable + QLatin1String ql1s; } \ No newline at end of file