diff options
| author | Mike Skec <skec@protonmail.ch> | 2021-01-06 20:22:52 +1100 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2021-01-06 10:51:18 +0100 |
| commit | b7f07140cbe020a90f553cbd00fbcd9c35115579 (patch) | |
| tree | d9b178ebcecf6b9bd694bc8079985a3646348420 /src/cachehandler.hpp | |
| parent | 1f400782f7aa999fdd81bf25b315eb24c28530ff (diff) | |
| download | kristall-b7f07140cbe020a90f553cbd00fbcd9c35115579.tar.gz | |
Attempt to fix build failures
Also get rid of a warning
Diffstat (limited to 'src/cachehandler.hpp')
| -rw-r--r-- | src/cachehandler.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/cachehandler.hpp b/src/cachehandler.hpp index ca782bb..74f61a2 100644 --- a/src/cachehandler.hpp +++ b/src/cachehandler.hpp @@ -4,8 +4,27 @@ #include "mimeparser.hpp" #include <memory> #include <unordered_map> + #include <QUrl> +#include <QString> #include <QByteArray> +#include <QtGlobal> + +// Need a QString hash implementation for Qt versions below 5.14 +#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) +#include <QHash> +namespace std +{ + template<> + struct hash<QString> + { + std::size_t operator()(const QString& s) const noexcept + { + return (size_t)qHash(s); + } + }; +} +#endif struct CachedPage { |
