forked from jbagg/QtZeroConf
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:
committed by
Florian Meinicke
parent
9d7b114e6a
commit
dca11a1c36
@ -53,6 +53,6 @@ typedef QSharedPointer<QZeroConfServiceData> QZeroConfService;
|
|||||||
|
|
||||||
Q_DECLARE_METATYPE(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
|
#endif // QZEROCONFSERVICE_H
|
||||||
|
Reference in New Issue
Block a user