Again, made compilable with msvc by adding compiler directive where necessary...

--HG--
branch : develop
This commit is contained in:
Curious One 2016-05-04 21:35:35 +10:00
parent 86de5ba274
commit f5f915cbe0
2 changed files with 6 additions and 0 deletions

View file

@ -31,6 +31,9 @@
#pragma GCC diagnostic ignored "-Wattributes"
#endif
#ifdef Q_CC_MSVC
#include <ciso646>
#endif /* Q_CC_MSVC */
//---------------------------------------------------------------------------------------------------------------------
inline QString NameRegExp()
{

View file

@ -32,6 +32,9 @@
#include <QtTest>
#ifdef Q_CC_MSVC
#include <ciso646>
#endif /* Q_CC_MSVC */
//---------------------------------------------------------------------------------------------------------------------
TST_VCommandLine::TST_VCommandLine(QObject *parent)
:QObject(parent)