We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e23731d + 82c73d9 commit 20e5f2cCopy full SHA for 20e5f2c
src/track/keyutils.cpp
@@ -1,3 +1,11 @@
1
+// Horrible Hack to workaround QT 4.8 bug with MSVC compiler. lp:1627826
2
+// QT 4.8 explicitely disable Initializer lists, but initializer lists is
3
+// supported with MSVC 2013 SP2 +
4
+// http://code.qt.io/cgit/qt/qt.git/tree/src/corelib/global/qglobal.h#n910
5
+// TODO(XXX): Remove after QT4 deprecation, unneeded with QT5
6
+#if _MSC_VER >= 1800 /* MSVS 2013 */
7
+ #define Q_COMPILER_INITIALIZER_LISTS
8
+#endif /* MSVS 2013 */
9
#include <QtDebug>
10
#include <QMap>
11
#include <QMutexLocker>
0 commit comments