Fixed: Compilation with Qt 5 and STLport (std::move doesn't exist)

This commit is contained in:
kervala 2016-01-16 15:54:46 +01:00
parent 9ba7bcf720
commit 5c0fcc5cfc

View file

@ -26,6 +26,12 @@
#endif
// Qt includes
#include <qglobal.h>
#ifdef Q_COMPILER_RVALUE_REFS
#undef Q_COMPILER_RVALUE_REFS
#endif
#include <QApplication>
#include <QtCore/QMap>
#include <QtCore/qdebug.h>