1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

GCC doesn't like forward-declared shared pointers as default args, CLang does.

This commit is contained in:
Leo Franchi 2011-09-14 17:04:25 -04:00
parent a2f139c204
commit 8f6cc7846a
5 changed files with 7 additions and 2 deletions

View File

@ -21,7 +21,7 @@
#include <QMutexLocker>
#include <QVariant>
#include <tomahawksettings.h>
#include "tomahawksettings.h"
#include "utils/logger.h"

View File

@ -22,9 +22,11 @@
#include <QObject>
#include <QVariantMap>
#include "album.h"
#include "artist.h"
#include "collection.h"
#include "typedefs.h"
#include "databasecommand.h"
#include "album.h"
#include "dllmacro.h"

View File

@ -22,6 +22,7 @@
#include <QObject>
#include <QVariantMap>
#include "artist.h"
#include "typedefs.h"
#include "databasecommand.h"

View File

@ -28,6 +28,7 @@
#include "typedefs.h"
#include "result.h"
#include "playlistinterface.h"
#include "query.h"
#include "dllmacro.h"

View File

@ -23,6 +23,7 @@
#include <QHash>
#include <QStackedWidget>
#include "artist.h"
#include "collection.h"
#include "playlistinterface.h"
#include "playlist/queueview.h"