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/input | |
parent | 940cab8620428f21e6d0c9f4b11893b1f44ce610 (diff) |
db/lazy, input/mms: add "override" keywords
Fixes -Winconsistent-missing-override (clang 3.6).
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/plugins/MmsInputPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/plugins/MmsInputPlugin.cxx b/src/input/plugins/MmsInputPlugin.cxx index df291bc84..d01cff3b3 100644 --- a/src/input/plugins/MmsInputPlugin.cxx +++ b/src/input/plugins/MmsInputPlugin.cxx @@ -43,7 +43,7 @@ protected: virtual size_t ThreadRead(void *ptr, size_t size, Error &error) override; - virtual void Close() { + void Close() override { mmsx_close(mms); } }; |