diff options
author | Ulf Hermann <[email protected]> | 2024-01-08 17:25:47 +0100 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2024-01-13 16:03:59 +0100 |
commit | 53c2e59fa30ae05112750dbc583937cd4eaaa820 (patch) | |
tree | c793f43b09c107f2dd192ab60548f9241a14f640 /src/qml/jsruntime/qv4executablecompilationunit_p.h | |
parent | 46911d539a5eb22e86a3a62254f1fecb8813529b (diff) |
QtQml: Move checksum verification into base CU
Change-Id: I49d48a7bc38e727bb23f3154311e1f7876f8cc03
Reviewed-by: Fabian Kosmale <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4executablecompilationunit_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4executablecompilationunit_p.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4executablecompilationunit_p.h b/src/qml/jsruntime/qv4executablecompilationunit_p.h index 4039e1c94d..01a564eb23 100644 --- a/src/qml/jsruntime/qv4executablecompilationunit_p.h +++ b/src/qml/jsruntime/qv4executablecompilationunit_p.h @@ -129,7 +129,10 @@ public: m_compilationUnit->resolvedTypes = resolvedTypes; } - bool verifyChecksum(const CompiledData::DependentTypesHasher &dependencyHasher) const; + bool verifyChecksum(const CompiledData::DependentTypesHasher &dependencyHasher) const + { + return m_compilationUnit->verifyChecksum(dependencyHasher); + } QQmlType qmlTypeForComponent(const QString &inlineComponentName = QString()) const; |