From 67a84f459da24af999dfa30877fcc2c64f78c262 Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Tue, 12 Jun 2018 07:01:11 +0200 Subject: [PATCH] Use override --- src/imageformats/exr.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/imageformats/exr.cpp b/src/imageformats/exr.cpp index ca4a7f2..170364c 100644 --- a/src/imageformats/exr.cpp +++ b/src/imageformats/exr.cpp @@ -41,10 +41,10 @@ public: { } - bool read(char c[], int n) Q_DECL_OVERRIDE; - Imf::Int64 tellg() Q_DECL_OVERRIDE; - void seekg(Imf::Int64 pos) Q_DECL_OVERRIDE; - void clear() Q_DECL_OVERRIDE; + bool read(char c[], int n) override; + Imf::Int64 tellg() override; + void seekg(Imf::Int64 pos) override; + void clear() override; private: QIODevice *m_dev;