From 81e2ea2920ae7308209bb96d940e41d4acd1cbb9 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Tue, 29 Mar 2022 08:08:06 +0200 Subject: [PATCH] qHash added --- src/common/QskAspect.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/common/QskAspect.h b/src/common/QskAspect.h index fc3a94d7..4b5f03bc 100644 --- a/src/common/QskAspect.h +++ b/src/common/QskAspect.h @@ -584,6 +584,11 @@ namespace std }; } +inline QskHashValue qHash( const QskAspect aspect, QskHashValue seed = 0 ) noexcept +{ + return qHash( aspect.value(), seed ); +} + #ifndef QT_NO_DEBUG_STREAM class QDebug;