From 42b1e859f10d352eb1b8ad5ad5226500f65d9dfe Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sat, 16 Jun 2018 18:44:35 +0900 Subject: converters.h: Make it still compile with Qt older than 5.6 Some folks are still on Ubuntu vivid :( --- lib/converters.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/converters.h b/lib/converters.h index eaf2a32e..4a206a4c 100644 --- a/lib/converters.h +++ b/lib/converters.h @@ -40,7 +40,11 @@ namespace std { size_t operator()(const QString& s) const Q_DECL_NOEXCEPT { - return qHash(s, uint(qGlobalQHashSeed())); + return qHash(s +#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)) + , uint(qGlobalQHashSeed()) +#endif + ); } }; } -- cgit v1.2.3