Skip to content
Permalink
Browse files
Merge pull request #6798 from spycrab/qt_moc_fix
Qt: Fix moc compilation
  • Loading branch information
lioncash committed May 10, 2018
2 parents e2deb15 + 18c7d29 commit 7b0d779
Showing 1 changed file with 6 additions and 1 deletion.
@@ -7,7 +7,12 @@
#include <QDialog>
#include <memory>

// Qt versions prior to 5.9 don't support C++17 nested namespaces in moc so we have to if-guard
// this header
#ifndef Q_MOC_RUN
#include "DiscIO/Volume.h"
#endif

#include "UICommon/GameFile.h"

class QStandardItem;
@@ -18,7 +23,7 @@ namespace DiscIO
{
class FileInfo;
struct Partition;
};
}; // namespace DiscIO

class FilesystemWidget final : public QWidget
{

0 comments on commit 7b0d779

Please sign in to comment.