summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/corelib/tools/qhash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qhash.h b/src/corelib/tools/qhash.h
index 9cc6fbf30bc..47bce5706b2 100644
--- a/src/corelib/tools/qhash.h
+++ b/src/corelib/tools/qhash.h
@@ -62,7 +62,7 @@ size_t calculateHash(const T &t, size_t seed = 0)
Q_UNUSED(seed);
return std::hash<T>()(t);
} else {
- static_assert(sizeof(T) == 0, "The key type must have a qHash overload or a std::hash specialization");
+ static_assert(QtPrivate::type_dependent_false<T>(), "The key type must have a qHash overload or a std::hash specialization");
return 0;
}
}