diff options
author | Andreas Buhr <[email protected]> | 2020-11-27 11:18:00 +0100 |
---|---|---|
committer | Andreas Buhr <[email protected]> | 2020-11-30 17:16:21 +0100 |
commit | 0440614af0bb08e373d8e3e40f90b6412c043d14 (patch) | |
tree | 28eb691637384b1c8ea9bbbc1a9675fb0d7d977b /src/tools/tracegen | |
parent | 5e84023344bfe8987c3ce5edf57f30261d677d2c (diff) |
Replace discouraged Q_MOVABLE_TYPE by Q_RELOCATABLE_TYPE
Q_MOVABLE_TYPE was conceived before C++ had move semantics. Now, with
move semantics, its name is misleading. Q_RELOCATABLE_TYPE was
introduced as a synonym to Q_MOVABLE_TYPE. Usage of Q_MOVABLE_TYPE
is discouraged now. This patch replaces all usages of Q_MOVABLE_TYPE
by Q_RELOCATABLE_TYPE in QtBase. As the two are synonymous, this
patch should have no impact on users.
Pick-to: 6.0
Change-Id: Ie653984363198c1aeb1f70f8e0fa189aae38eb5c
Reviewed-by: Lars Knoll <[email protected]>
Reviewed-by: Andrei Golubev <[email protected]>
Diffstat (limited to 'src/tools/tracegen')
-rw-r--r-- | src/tools/tracegen/provider.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/tracegen/provider.h b/src/tools/tracegen/provider.h index a62522adc71..99b10b13f16 100644 --- a/src/tools/tracegen/provider.h +++ b/src/tools/tracegen/provider.h @@ -92,8 +92,8 @@ struct Provider Provider parseProvider(const QString &filename); -Q_DECLARE_TYPEINFO(Tracepoint::Argument, Q_MOVABLE_TYPE); -Q_DECLARE_TYPEINFO(Tracepoint::Field, Q_MOVABLE_TYPE); -Q_DECLARE_TYPEINFO(Tracepoint, Q_MOVABLE_TYPE); +Q_DECLARE_TYPEINFO(Tracepoint::Argument, Q_RELOCATABLE_TYPE); +Q_DECLARE_TYPEINFO(Tracepoint::Field, Q_RELOCATABLE_TYPE); +Q_DECLARE_TYPEINFO(Tracepoint, Q_RELOCATABLE_TYPE); #endif // PROVIDER_H |