Clementine-audio-player-Mac.../src/fixlastfm.h

14 lines
291 B
C
Raw Normal View History

2010-03-23 15:07:05 +01:00
#ifndef FIXLASTFM_H
#define FIXLASTFM_H
// Include this before <lastfm/Track> to fix a compile error in release mode
#ifdef QT_NO_DEBUG_OUTPUT
# include <QtDebug>
# include <QUrl>
// Stub this out so lastfm/Track still compiles
QDebug& operator<<(QDebug&, const QUrl&);
#endif
#endif