summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qobject_impl.h
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2020-10-12 20:04:09 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2020-10-13 08:49:43 +0200
commit1918c689d78b0f6a718343e7ebceb387acc32a97 (patch)
tree91630bdff689adbe7873031511f9fa4643bc8b97 /src/corelib/kernel/qobject_impl.h
parent044231c4d284f5d22694a4ed9d0ee75d17e8dda8 (diff)
QObject: simplify part of connection logic
We do not require anymore that the metatypes are declared beforehand, but can instead simply use QMetaType::fromType<T>().id(). This allows us to remove the templates containing the "metatype is declared" validation logic. Change-Id: I0b74c72643a233335689074091a38648f3e4f853 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/corelib/kernel/qobject_impl.h')
-rw-r--r--src/corelib/kernel/qobject_impl.h19
1 files changed, 3 insertions, 16 deletions
diff --git a/src/corelib/kernel/qobject_impl.h b/src/corelib/kernel/qobject_impl.h
index 0c36417a24..722ebec847 100644
--- a/src/corelib/kernel/qobject_impl.h
+++ b/src/corelib/kernel/qobject_impl.h
@@ -56,23 +56,10 @@ namespace QtPrivate {
Logic to statically generate the array of qMetaTypeId
ConnectionTypes<FunctionPointer<Signal>::Arguments>::types() returns an array
of int that is suitable for the types arguments of the connection functions.
-
- The array only exist of all the types are declared as a metatype
- (detected using the TypesAreDeclaredMetaType helper struct)
- If one of the type is not declared, the function return 0 and the signal
- cannot be used in queued connection.
*/
- template <typename ArgList> struct TypesAreDeclaredMetaType { enum { Value = false }; };
- template <> struct TypesAreDeclaredMetaType<List<>> { enum { Value = true }; };
- template <typename Arg, typename... Tail> struct TypesAreDeclaredMetaType<List<Arg, Tail...> >
- { enum { Value = QMetaTypeId2<Arg>::Defined && TypesAreDeclaredMetaType<List<Tail...>>::Value }; };
-
- template <typename ArgList, bool Declared = TypesAreDeclaredMetaType<ArgList>::Value > struct ConnectionTypes
- { static const int *types() { return nullptr; } };
- template <> struct ConnectionTypes<List<>, true>
- { static const int *types() { return nullptr; } };
- template <typename... Args> struct ConnectionTypes<List<Args...>, true>
- { static const int *types() { static const int t[sizeof...(Args) + 1] = { (QtPrivate::QMetaTypeIdHelper<Args>::qt_metatype_id())..., 0 }; return t; } };
+ template <typename T> struct ConnectionTypes;
+ template <typename... Args> struct ConnectionTypes<List<Args...>>
+ { static const int *types() { static const int t[sizeof...(Args) + 1] = { QMetaType::fromType<Args>().id()..., 0 }; return t; } };
// implementation of QSlotObjectBase for which the slot is a static function
// Args and R are the List of arguments and the return type of the signal to which the slot is connected.