summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/kernel/qobject
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2023-04-27 17:00:41 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2023-04-28 07:45:22 +0200
commit1c5c1df43e2be10c46c13461888b012c89938150 (patch)
treeff2ca1cf2bbbf15f6863eafead47e69f8ed32f8b /tests/auto/corelib/kernel/qobject
parent9958edba41ac49097a54e0872c3c4934d2dd81f9 (diff)
Add a helper for better error messages when functor is incompatible
Amends 207aae5560aa2865ec55ddb9ecbb50048060c0c0 to make it easy to create human-friendly error messages. Since the functor-accepting member functions are not removed from the API, the first compile error will be that there is no suitable overload of the makeSlotObject helper, which. With the assert helper, the first error message is easier to understand. Change-Id: I4878ec35a44ddfa5dc9d9e358d81c3fd40389c0c Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests/auto/corelib/kernel/qobject')
-rw-r--r--tests/auto/corelib/kernel/qobject/tst_qobject.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/auto/corelib/kernel/qobject/tst_qobject.cpp b/tests/auto/corelib/kernel/qobject/tst_qobject.cpp
index 649f075a02..76ceb84271 100644
--- a/tests/auto/corelib/kernel/qobject/tst_qobject.cpp
+++ b/tests/auto/corelib/kernel/qobject/tst_qobject.cpp
@@ -8377,6 +8377,7 @@ public:
template<typename Functor>
bool callMe0(const typename QtPrivate::ContextTypeForFunctor<Functor>::ContextType *, Functor &&func)
{
+ QtPrivate::AssertCompatibleFunctions<Prototype0, Functor>();
auto *slotObject = QtPrivate::makeSlotObject<Prototype0>(std::forward<Functor>(func));
slotObject->destroyIfLastRef();
return true;
@@ -8391,6 +8392,7 @@ public:
template<typename Functor>
bool callMe1(const typename QtPrivate::ContextTypeForFunctor<Functor>::ContextType *, Functor &&func)
{
+ QtPrivate::AssertCompatibleFunctions<Prototype1, Functor>();
auto *slotObject = QtPrivate::makeSlotObject<Prototype1>(std::forward<Functor>(func));
slotObject->destroyIfLastRef();
return true;
@@ -8406,14 +8408,6 @@ public:
static void freeFunction0() {}
static void freeFunction1(QString) {}
-template<typename Prototype, typename Functor, typename = void>
-struct AreFunctionsCompatible : std::false_type {};
-template<typename Prototype, typename Functor>
-struct AreFunctionsCompatible<Prototype, Functor, std::enable_if_t<
- std::is_same_v<decltype(QtPrivate::makeSlotObject<Prototype>(std::forward<Functor>(std::declval<Functor>()))),
- QtPrivate::QSlotObjectBase *>>
-> : std::true_type {};
-
template<typename Prototype, typename Functor>
inline constexpr bool compiles(Functor &&) {
return QtPrivate::AreFunctionsCompatible<Prototype, Functor>::value;