summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2023-05-31 11:08:34 +0200
committerMarc Mutz <marc.mutz@qt.io>2023-05-31 16:37:24 +0200
commit7041d9dd7518ae37a0067e702f6fc1d88506395d (patch)
treea1ae6177dbaccbe39ecc511b23a759446200d426 /src
parent1e0e16b5f3c0d4f3f78d5369b4dffedb03937481 (diff)
QVariant: visually separate PrivateShared and Private nested classes
Add an empty line between the two. Pick-to: 6.5 Change-Id: If1c50ebb0b825acc53364cce2e083332367e757c Reviewed-by: Marc Mutz <marc.mutz@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/kernel/qvariant.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/kernel/qvariant.h b/src/corelib/kernel/qvariant.h
index 01646bca28..b1f6442bec 100644
--- a/src/corelib/kernel/qvariant.h
+++ b/src/corelib/kernel/qvariant.h
@@ -89,6 +89,7 @@ public:
const void *data() const { return reinterpret_cast<const uchar *>(this) + offset; }
void *data() { return reinterpret_cast<uchar *>(this) + offset; }
};
+
struct Private
{
static constexpr size_t MaxInternalSize = 3 * sizeof(void *);