diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-06 22:56:51 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-06 22:56:51 +0900 |
commit | ae0b65440834a76f3ce6c266ee4b7d683b215842 (patch) | |
tree | 3bf6181993e0bf0b0d0d962d0176b63ebc2ea263 | |
parent | ea865bade764c095aff175d10a4c2601a9ee34e0 (diff) | |
download | libquotient-ae0b65440834a76f3ce6c266ee4b7d683b215842.tar.gz libquotient-ae0b65440834a76f3ce6c266ee4b7d683b215842.zip |
Relaxed VS version a bit.
-rw-r--r-- | settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ namespace QMatrixClient class Settings: public QSettings
{
public:
-#if defined(_MSC_VER) && _MSC_VER <= 1900
+#if defined(_MSC_VER) && _MSC_VER < 1900
// VS 2013 (and probably older) aren't friends with 'using' statements
// that involve private constructors
explicit Settings(QObject* parent = 0) : QSettings(parent) { }
|