summaryrefslogtreecommitdiffhomepage
path: root/compat/qhash.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-10-07 00:55:59 +0200
committerStanislaw Halik <sthalik@misaki.pl>2018-10-07 00:55:59 +0200
commit9a881ac796dd46b4bdde7f48d8003160c2242c2d (patch)
tree82f37aee29046c2adce979a1ee1268c470f7276e /compat/qhash.hpp
parent329a0e5a8d1d275fa7fa5533c8327139fc37e1ab (diff)
fix GCC build errors
Issue: #726
Diffstat (limited to 'compat/qhash.hpp')
-rw-r--r--compat/qhash.hpp2
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);
}