SQL/OCI: add missing overide()

QOCIDriver::hasFeature() missed a 'override' which prevents compiling it
with '-Werror'

Pick-to: 6.2 6.4
Change-Id: I73a30134415947475e8f378fdb51bdd3f7fdd989
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
This commit is contained in:
Christian Ehrlicher 2022-10-12 20:17:36 +02:00
parent 9eca8d62fa
commit 71f7a49fb2

View File

@ -42,7 +42,7 @@ public:
explicit QOCIDriver(QObject *parent = nullptr);
QOCIDriver(OCIEnv *env, OCISvcCtx *ctx, QObject *parent = nullptr);
~QOCIDriver();
bool hasFeature(DriverFeature f) const;
bool hasFeature(DriverFeature f) const override;
bool open(const QString &db,
const QString &user,
const QString &password,