From c0ede987276d8a4cb7953c83868f02c6caefb250 Mon Sep 17 00:00:00 2001 From: Sona Kurazyan Date: Wed, 9 Feb 2022 09:35:01 +0100 Subject: [PATCH] Export QFutureCallOutInterface to allow external use 2dea20e4b075f2367a069793ece2327eff5ac4bd de-inlined the dtor to avoid duplicating its vtable in multiple translation units, but the class is used externally, so we need to export it now. Pick-to: 6.3 Fixes: QTBUG-100569 Change-Id: I7cf2abdfdeb59bced0631838fe329ba94ab8c73a Reviewed-by: Marc Mutz --- src/corelib/thread/qfutureinterface_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/thread/qfutureinterface_p.h b/src/corelib/thread/qfutureinterface_p.h index 0c01a0f97d..24902cbc9a 100644 --- a/src/corelib/thread/qfutureinterface_p.h +++ b/src/corelib/thread/qfutureinterface_p.h @@ -122,7 +122,7 @@ private: { } }; -class QFutureCallOutInterface +class Q_CORE_EXPORT QFutureCallOutInterface { public: virtual ~QFutureCallOutInterface();