summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIvan Solovev <ivan.solovev@qt.io>2023-01-12 10:35:18 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-01-16 09:13:44 +0000
commit5cdde9fbad355fe19a5e4d5def445bb23c905f13 (patch)
tree12871a610491e9eca4830c995fc88221c6a6dc48 /src
parent90ad7d780c8e8d8b638be3377a47ce8f22b74969 (diff)
Remove pointless inline keyword
As pointed out during Qt 6.5 API review. Change-Id: Ifd1b552d2b08328f51e286723eaf8bfd7427a584 Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: André Hartmann <aha_1980@gmx.de> Reviewed-by: Marc Mutz <marc.mutz@qt.io> (cherry picked from commit b0f8dd2ab52b0465851bfb2ee3625c4aa279a1b0) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/serialbus/qcanframeprocessor.h2
-rw-r--r--src/serialbus/qcanuniqueiddescription.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/serialbus/qcanframeprocessor.h b/src/serialbus/qcanframeprocessor.h
index d74fd25..7975576 100644
--- a/src/serialbus/qcanframeprocessor.h
+++ b/src/serialbus/qcanframeprocessor.h
@@ -52,7 +52,7 @@ public:
return !equals(lhs, rhs);
}
- inline void swap(QCanFrameProcessor &other) noexcept { d.swap(other.d); }
+ void swap(QCanFrameProcessor &other) noexcept { d.swap(other.d); }
QCanBusFrame prepareFrame(QtCanBus::UniqueId uniqueId, const QVariantMap &signalValues);
ParseResult parseFrame(const QCanBusFrame &frame);
diff --git a/src/serialbus/qcanuniqueiddescription.h b/src/serialbus/qcanuniqueiddescription.h
index 6591672..ef0c8cd 100644
--- a/src/serialbus/qcanuniqueiddescription.h
+++ b/src/serialbus/qcanuniqueiddescription.h
@@ -34,7 +34,7 @@ public:
return !equals(lhs, rhs);
}
- inline void swap(QCanUniqueIdDescription &other) noexcept { d.swap(other.d); }
+ void swap(QCanUniqueIdDescription &other) noexcept { d.swap(other.d); }
bool isValid() const;