aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/sqlite
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@qt.io>2023-09-06 13:42:14 +0200
committerMarco Bubke <marco.bubke@qt.io>2023-09-07 14:57:07 +0000
commit6d79f308c19333820130000130f52a315f8db5bd (patch)
tree39509380910044f76916b6335ea1d99eeaa240ff /src/libs/sqlite
parenta4f8cf709e1619daab4f7f91f79465dcbe384523 (diff)
QmlDesigner: Add std::hash to NodeMetaInfo
Change-Id: Ib4c9bb3e275167e846629845d16773c03386b39b Reviewed-by: Qt CI Patch Build Bot <ci_patchbuild_bot@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Diffstat (limited to 'src/libs/sqlite')
-rw-r--r--src/libs/sqlite/sqliteids.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/sqlite/sqliteids.h b/src/libs/sqlite/sqliteids.h
index 2309bd58e5..d64e4d9645 100644
--- a/src/libs/sqlite/sqliteids.h
+++ b/src/libs/sqlite/sqliteids.h
@@ -85,7 +85,7 @@ struct hash<Sqlite::BasicId<Type, InternalIntegerType>>
{
auto operator()(const Sqlite::BasicId<Type, InternalIntegerType> &id) const
{
- return std::hash<InternalIntegerType>(id.internalId());
+ return std::hash<InternalIntegerType>{}(id.internalId());
}
};
} // namespace std