FilesystemDevice: Ignore compile warning C4250
This commit is contained in:
@@ -22,6 +22,11 @@
|
|||||||
#ifndef FILESYSTEMDEVICE_H
|
#ifndef FILESYSTEMDEVICE_H
|
||||||
#define FILESYSTEMDEVICE_H
|
#define FILESYSTEMDEVICE_H
|
||||||
|
|
||||||
|
#ifdef _MSC_VER // FIXME
|
||||||
|
#pragma warning(push)
|
||||||
|
#pragma warning(disable : 4250)
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
@@ -78,4 +83,8 @@ class FilesystemDevice : public ConnectedDevice, public virtual FilesystemMusicS
|
|||||||
QList<QObject*> wait_for_exit_;
|
QList<QObject*> wait_for_exit_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(pop)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // FILESYSTEMDEVICE_H
|
#endif // FILESYSTEMDEVICE_H
|
||||||
|
|||||||
Reference in New Issue
Block a user