diff options
| author | Tim Blechmann <tim@klingt.org> | 2025-07-03 16:33:59 +0800 |
|---|---|---|
| committer | Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> | 2025-08-11 13:04:54 +0000 |
| commit | 38099ce83c4972f867c56f58ea4a8fbee55ba1fd (patch) | |
| tree | 2158d552addf10a40502a95b1505491654873003 | |
| parent | 6a66d8f0610c4e8b5e5cda2892df78ae601af9e7 (diff) | |
tests: tst_bic - un-const sizeDiff6.8
There's on mingw, there's a sizeDiff.removed.removeAll is called, which
cannot be done on a const SizeDiff (QStringList).
Amends 63eec03997cb3a22b1596829a864a80efd192dcb
Change-Id: Ic2857b438e2a4cb9eb8b9c9893331e26d93d9752
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
(cherry picked from commit 23fff07fae493bebfbb4822a85d8af6023a8b526)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
(cherry picked from commit 2a64dcbdc451f6fc4dc06f5fa3e1209271b3ae01)
(cherry picked from commit 26a5fcc77fed49d9112ee8c46d8c35b39e4f0cbc)
| -rw-r--r-- | tests/postbuild/bic/tst_bic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/postbuild/bic/tst_bic.cpp b/tests/postbuild/bic/tst_bic.cpp index 2f0fd51a..fbec27ec 100644 --- a/tests/postbuild/bic/tst_bic.cpp +++ b/tests/postbuild/bic/tst_bic.cpp @@ -641,7 +641,7 @@ void tst_Bic::sizesAndVTables() isFailed = true; } - const QBic::SizeDiff sizeDiff = bic.diffSizes(oldLibInfo, currentLibInfo); + QBic::SizeDiff sizeDiff = bic.diffSizes(oldLibInfo, currentLibInfo); if (!sizeDiff.mismatch.isEmpty()) { for (QString className : sizeDiff.mismatch) qWarning() << "size mismatch for" << className |
