QXmlStreamSimpleStack: disable copy and move SMFs

Clazy complained that the class has a dtor, but no copy ctor.

Pick-to: 6.3
Change-Id: Ida4024df1ff22c7758b8efa6e9383e03734720a8
Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
bb10
Marc Mutz 2022-04-12 09:31:39 +02:00
parent a986a8c099
commit acb9633efa
1 changed files with 2 additions and 0 deletions

View File

@ -127,6 +127,8 @@ using namespace QtPrivate;
template <typename T> class QXmlStreamSimpleStack
{
Q_DISABLE_COPY_MOVE(QXmlStreamSimpleStack)
T *data;
qsizetype tos, cap;
public: