Fix compiler warning in qqmlprivate.h
Remove ";" after function definition. Change-Id: I566ecf40633bff53e4413ae183d5e56548bf66de Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> (cherry picked from commit62c6863554
) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit00cea1628e
)
This commit is contained in:
parent
90ccadc890
commit
150eae8cde
|
@ -365,8 +365,8 @@ namespace QQmlPrivate
|
|||
struct Properties<Parent, void>
|
||||
{
|
||||
using Func = QQmlAttachedPropertiesFunc<QObject>;
|
||||
static const QMetaObject *staticMetaObject() { return nullptr; };
|
||||
static Func attachedPropertiesFunc() { return nullptr; };
|
||||
static const QMetaObject *staticMetaObject() { return nullptr; }
|
||||
static Func attachedPropertiesFunc() { return nullptr; }
|
||||
};
|
||||
|
||||
using Type = typename std::conditional<
|
||||
|
|
Loading…
Reference in New Issue