Fix linker error in example

when building QtZeroConf as shared library: The debug operator<< for
QZeroConfService was not properly exported
This commit is contained in:
Florian Meinicke
2020-09-11 09:35:25 +02:00
committed by Florian Meinicke
parent 9d7b114e6a
commit dca11a1c36

View File

@ -53,6 +53,6 @@ typedef QSharedPointer<QZeroConfServiceData> QZeroConfService;
Q_DECLARE_METATYPE(QZeroConfService)
QDebug operator<<(QDebug debug, const QZeroConfService &service);
QDebug Q_ZEROCONF_EXPORT operator<<(QDebug debug, const QZeroConfService &service);
#endif // QZEROCONFSERVICE_H