forked from qt-creator/qt-creator
Compile fix for Qt 4.8.6
Task-number: QTCREATORBUG-12695 Done-by: Fawzi Mohamed <fawzi.mohamed@digia.com> Change-Id: Id184bb051c08ee954474cca89308712e14710f23 Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
@@ -181,9 +181,9 @@ bool FakeMetaObjectWithOrigin::operator ==(const FakeMetaObjectWithOrigin &o) co
|
||||
return fakeMetaObject == o.fakeMetaObject;
|
||||
}
|
||||
|
||||
uint qHash(const FakeMetaObjectWithOrigin &fmoo, int seed)
|
||||
uint qHash(const FakeMetaObjectWithOrigin &fmoo)
|
||||
{
|
||||
return qHash(fmoo.fakeMetaObject, seed);
|
||||
return qHash(fmoo.fakeMetaObject);
|
||||
}
|
||||
|
||||
} // namespace QmlJS
|
||||
|
@@ -687,7 +687,7 @@ public:
|
||||
bool operator ==(const FakeMetaObjectWithOrigin &o) const;
|
||||
};
|
||||
|
||||
QMLJS_EXPORT uint qHash(const FakeMetaObjectWithOrigin &fmoo, int seed = 0);
|
||||
QMLJS_EXPORT uint qHash(const FakeMetaObjectWithOrigin &fmoo);
|
||||
|
||||
class QMLJS_EXPORT CppQmlTypes
|
||||
{
|
||||
|
Reference in New Issue
Block a user