diff options
author | Max Kellermann <max@duempel.org> | 2014-12-26 14:29:26 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-26 14:29:29 +0100 |
commit | 9f7fd1fbfb0e351d42657b1094c34b0f2233ef6c (patch) | |
tree | 84e57a6df0c01033e9386dfbc3a311f8018e5fab /src/db/plugins/LazyDatabase.hxx | |
parent | 940cab8620428f21e6d0c9f4b11893b1f44ce610 (diff) | |
download | mpd-9f7fd1fbfb0e351d42657b1094c34b0f2233ef6c.tar.gz mpd-9f7fd1fbfb0e351d42657b1094c34b0f2233ef6c.tar.xz mpd-9f7fd1fbfb0e351d42657b1094c34b0f2233ef6c.zip |
db/lazy, input/mms: add "override" keywords
Fixes -Winconsistent-missing-override (clang 3.6).
Diffstat (limited to '')
-rw-r--r-- | src/db/plugins/LazyDatabase.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/plugins/LazyDatabase.hxx b/src/db/plugins/LazyDatabase.hxx index ae1b961d0..38b3fdc2a 100644 --- a/src/db/plugins/LazyDatabase.hxx +++ b/src/db/plugins/LazyDatabase.hxx @@ -43,7 +43,7 @@ public: virtual const LightSong *GetSong(const char *uri_utf8, Error &error) const override; - virtual void ReturnSong(const LightSong *song) const; + void ReturnSong(const LightSong *song) const override; virtual bool Visit(const DatabaseSelection &selection, VisitDirectory visit_directory, |