Commit 478d964c authored by Alex Blasche's avatar Alex Blasche
Browse files

Fix class vs struct mismatch


In file included from qtbase/include/QtCore/5.12.0/QtCore/private/qjni_p.h:1:
qtbase/include/QtCore/5.12.0/QtCore/private/../../../../../src/corelib/kernel/qjni_p.h:68:1: warning:
      'QJNIEnvironmentPrivate' defined as a class here but previously declared as a struct [-Wmismatched-tags]
class Q_CORE_EXPORT QJNIEnvironmentPrivate
^
jni/qandroidjnienvironment.h:50:1: note: did you mean class here?
struct QJNIEnvironmentPrivate;
^~~~~~
class

Change-Id: I0df1a4350c50ca920ad7f13978a62913a9702a15
Reviewed-by: default avatarVolker Krause <volker.krause@kdab.com>
Reviewed-by: default avatarAlbert Astals Cid <albert.astals.cid@kdab.com>
Reviewed-by: default avatarBogDan Vatra <bogdan@kdab.com>
parent 48256a15
Showing with 1 addition and 1 deletion
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
struct QJNIEnvironmentPrivate; class QJNIEnvironmentPrivate;
class Q_ANDROIDEXTRAS_EXPORT QAndroidJniEnvironment class Q_ANDROIDEXTRAS_EXPORT QAndroidJniEnvironment
{ {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment