aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2016-09-06 22:56:51 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2016-09-06 22:56:51 +0900
commitae0b65440834a76f3ce6c266ee4b7d683b215842 (patch)
tree3bf6181993e0bf0b0d0d962d0176b63ebc2ea263
parentea865bade764c095aff175d10a4c2601a9ee34e0 (diff)
downloadlibquotient-ae0b65440834a76f3ce6c266ee4b7d683b215842.tar.gz
libquotient-ae0b65440834a76f3ce6c266ee4b7d683b215842.zip
Relaxed VS version a bit.
-rw-r--r--settings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.h b/settings.h
index 47b3ef85..10b2bb0a 100644
--- a/settings.h
+++ b/settings.h
@@ -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) { }