From 270aee1d558bc68471bc997556a06f2850210476 Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 29 Aug 2018 22:31:56 +0200 Subject: [PATCH] Use override in OggVorbisComment --- ogg/oggcontainer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ogg/oggcontainer.h b/ogg/oggcontainer.h index a754112..a095719 100644 --- a/ogg/oggcontainer.h +++ b/ogg/oggcontainer.h @@ -69,9 +69,9 @@ class TAG_PARSER_EXPORT OggVorbisComment : public VorbisComment { public: OggVorbisComment(); - TagType type() const; - const char *typeName() const; - bool supportsTarget() const; + TagType type() const override; + const char *typeName() const override; + bool supportsTarget() const override; OggParameter &oggParams(); const OggParameter &oggParams() const;