clang-tidy: Use override keyword

run-clang-tidy -header-filter='.*' -checks='-*,modernize-use-override' -fix
This commit is contained in:
Urs Fleisch
2023-07-15 15:54:03 +02:00
parent e20a53afbb
commit 9867bc947e
82 changed files with 587 additions and 587 deletions

View File

@ -34,9 +34,9 @@ using namespace TagLib;
class PlainFile : public File {
public:
explicit PlainFile(FileName name) : File(name) { }
Tag *tag() const { return NULL; }
AudioProperties *audioProperties() const { return NULL; }
bool save() { return false; }
Tag *tag() const override { return NULL; }
AudioProperties *audioProperties() const override { return NULL; }
bool save() override { return false; }
void truncate(long length) { File::truncate(length); }
ByteVector readAll() {