diff options
author | Olivier De Cannière <[email protected]> | 2023-05-31 10:48:32 +0200 |
---|---|---|
committer | Olivier De Cannière <[email protected]> | 2023-05-31 12:08:03 +0200 |
commit | 7f86e0d57c9856887450d3e2c83c8b7e378dbda0 (patch) | |
tree | 19760173fdd1f42fe687bfa4a169e4885c489ece /src/qmlcompiler/qqmljsloggingutils.h | |
parent | 2436de31bc48b0576d2f48507a89ffbb719e52c1 (diff) |
QQmlSA: Mark move SMF noexcept and specify alignment for fast-PIMPLs
Change-Id: Ia3dc17a31856047b9fd7c5da89320c7234847a59
Reviewed-by: Fabian Kosmale <[email protected]>
Diffstat (limited to 'src/qmlcompiler/qqmljsloggingutils.h')
-rw-r--r-- | src/qmlcompiler/qqmljsloggingutils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmlcompiler/qqmljsloggingutils.h b/src/qmlcompiler/qqmljsloggingutils.h index 029d2848f6..caca28072c 100644 --- a/src/qmlcompiler/qqmljsloggingutils.h +++ b/src/qmlcompiler/qqmljsloggingutils.h @@ -48,9 +48,9 @@ public: LoggerCategory(QString name, QString settingsName, QString description, QtMsgType level, bool ignored = false, bool isDefault = false); LoggerCategory(const LoggerCategory &); - LoggerCategory(LoggerCategory &&); + LoggerCategory(LoggerCategory &&) noexcept; LoggerCategory &operator=(const LoggerCategory &); - LoggerCategory &operator=(LoggerCategory &&); + LoggerCategory &operator=(LoggerCategory &&) noexcept; ~LoggerCategory(); QString name() const; |