diff --git a/src/util/QStringHash.hpp b/src/util/QStringHash.hpp index 6e2d62b82..968086acd 100644 --- a/src/util/QStringHash.hpp +++ b/src/util/QStringHash.hpp @@ -5,6 +5,7 @@ namespace std { +#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) template <> struct hash { std::size_t operator()(const QString &s) const @@ -12,5 +13,6 @@ struct hash { return qHash(s); } }; +#endif } // namespace std