diff options
author | hjk <[email protected]> | 2022-07-13 09:27:18 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2022-07-13 09:44:09 +0000 |
commit | 802de0eb5ee4d29a1e75764880989ba572f6af27 (patch) | |
tree | 07ff1a2075d7b51b1b1d647316b9f527522c5470 /src/libs/qmljs/qmljsinterpreter.cpp | |
parent | 480da99508094f59366e4066c7cb239c9b36a1ed (diff) |
Utils: Collapse most of porting,h
Taking the Qt 6 branches, leaving some dummies until downstream
adapted.
Change-Id: Ib9b86568d73c341c8f740ba497c3cbfab830d8a1
Reviewed-by: Eike Ziller <[email protected]>
Reviewed-by: Qt CI Bot <[email protected]>
Diffstat (limited to 'src/libs/qmljs/qmljsinterpreter.cpp')
-rw-r--r-- | src/libs/qmljs/qmljsinterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/qmljs/qmljsinterpreter.cpp b/src/libs/qmljs/qmljsinterpreter.cpp index 9412406fdc4..983a0b7b3e7 100644 --- a/src/libs/qmljs/qmljsinterpreter.cpp +++ b/src/libs/qmljs/qmljsinterpreter.cpp @@ -175,7 +175,7 @@ bool FakeMetaObjectWithOrigin::operator ==(const FakeMetaObjectWithOrigin &o) co return fakeMetaObject == o.fakeMetaObject; } -Utils::QHashValueType qHash(const FakeMetaObjectWithOrigin &fmoo) +size_t qHash(const FakeMetaObjectWithOrigin &fmoo) { return qHash(fmoo.fakeMetaObject); } |