diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-07 00:55:59 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-07 00:55:59 +0200 |
commit | 9a881ac796dd46b4bdde7f48d8003160c2242c2d (patch) | |
tree | 82f37aee29046c2adce979a1ee1268c470f7276e /compat | |
parent | 329a0e5a8d1d275fa7fa5533c8327139fc37e1ab (diff) |
fix GCC build errors
Issue: #726
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); } |