summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmir Masoud Abdol <amir.abdol@qt.io>2023-03-09 15:17:19 +0100
committerAmir Masoud Abdol <amir.abdol@qt.io>2023-03-14 17:28:44 +0100
commit3e9f2a0adbf0aecc652f559acaad865ca5ad1858 (patch)
tree111758bd58e76f582eb88b38d6a1a8d0c5397ecb
parentd203f82916dc4e04279ab890eeeb63a991313621 (diff)
Silence an unused-parameter warning
On Windows, when using unity build, compilers insist that these are not used, even though they are; and consequently the build fails. Pick-to: 6.5 Task-number: QTBUG-109394 Change-Id: I6441134db563e0553a3c9193afe2569fc2ffce85 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-rw-r--r--src/corelib/tools/qvarlengtharray.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/corelib/tools/qvarlengtharray.h b/src/corelib/tools/qvarlengtharray.h
index 9778e47f3c..44c5d8beac 100644
--- a/src/corelib/tools/qvarlengtharray.h
+++ b/src/corelib/tools/qvarlengtharray.h
@@ -52,7 +52,8 @@ protected:
qsizetype s; // size
void *ptr; // data
- Q_ALWAYS_INLINE constexpr void verify(qsizetype pos = 0, qsizetype n = 1) const
+ Q_ALWAYS_INLINE constexpr void verify([[maybe_unused]] qsizetype pos = 0,
+ [[maybe_unused]] qsizetype n = 1) const
{
Q_ASSERT(pos >= 0);
Q_ASSERT(pos <= size());