summarylogtreecommitdiffstats
path: root/qt-5.14.patch
diff options
context:
space:
mode:
Diffstat (limited to 'qt-5.14.patch')
-rw-r--r--qt-5.14.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/qt-5.14.patch b/qt-5.14.patch
deleted file mode 100644
index 9e8399170204..000000000000
--- a/qt-5.14.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- a/src/libtremotesf/stdutils.h
-+++ b/src/libtremotesf/stdutils.h
-@@ -25,26 +25,27 @@
- #include <QHash>
- #include <QString>
-
-+#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
- namespace std {
- template<>
- class hash<QString> {
- public:
-- size_t operator()(const QString& string) const
-+ size_t operator()(const QString& string) const noexcept(noexcept(qHash(string)))
- {
-- return qHash(string);
-+ return qHash(string, qHash(std::hash<int>{}(0)));
- }
- };
-
- template<>
- class hash<QByteArray> {
- public:
-- size_t operator()(const QByteArray& bytes) const
-+ size_t operator()(const QByteArray& bytes) const noexcept(noexcept(qHash(bytes)))
- {
-- return qHash(bytes);
-+ return qHash(bytes, qHash(std::hash<int>{}(0)));
- }
- };
- }
--
-+#endif
-
- namespace tremotesf
- {