diff options
Diffstat (limited to 'compat')
-rw-r--r-- | compat/qhash.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/qhash.hpp b/compat/qhash.hpp index ba569285..c2be4fc5 100644 --- a/compat/qhash.hpp +++ b/compat/qhash.hpp @@ -6,7 +6,7 @@ namespace std { template<> struct hash<QString> { - constexpr unsigned operator()(const QString& value) const + unsigned operator()(const QString& value) const { return qHash(value); } |