diff options
| author | Marc Mutz <marc.mutz@qt.io> | 2022-02-14 08:40:45 +0100 |
|---|---|---|
| committer | Marc Mutz <marc.mutz@qt.io> | 2024-09-16 05:49:32 +0000 |
| commit | 3af20bd8eb8c75017c5d6d138d7c42914ee5bee3 (patch) | |
| tree | 095a3a1dd7a49932eb4b1a386bd5b3c8ce8bfcdc /src/corelib/io/qabstractfileengine.cpp | |
| parent | 81d55f772892445686862e49d0a6092668f8c725 (diff) | |
QtCore: De-duplicate vtables, 2024 edition
This de-inlines destuctors of classes whose vtables are proven to be
duplicated by -Wweak-tables using the upcoming headersclean for _p.h
feature.
Since these are all private API classes, we can pick all the way back
to 6.2, and we don't need the comment that the dtor must always stay
empty, like for public classes.
Task-number: QTBUG-45582
Task-number: QTBUG-126219
Pick-to: 6.8
Change-Id: I8c864c0d2ed3ca20d20d5cfc356290eb529edf6c
Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Diffstat (limited to 'src/corelib/io/qabstractfileengine.cpp')
| -rw-r--r-- | src/corelib/io/qabstractfileengine.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/corelib/io/qabstractfileengine.cpp b/src/corelib/io/qabstractfileengine.cpp index a3fa9c00f86..de228d50f49 100644 --- a/src/corelib/io/qabstractfileengine.cpp +++ b/src/corelib/io/qabstractfileengine.cpp @@ -32,6 +32,9 @@ static QString appendSlashIfNeeded(const QString &path) return path; } +QAbstractFileEnginePrivate::~QAbstractFileEnginePrivate() + = default; + /*! \class QAbstractFileEngineHandler \inmodule QtCore |
