Modernize override syntax.

This commit is contained in:
casey langen 2020-10-30 16:47:34 -07:00
parent c536a4bc9d
commit 5e23a21aa6

View File

@ -63,13 +63,13 @@ using namespace std::chrono;
class NullIndexer: public musik::core::IIndexer { class NullIndexer: public musik::core::IIndexer {
public: public:
virtual ~NullIndexer() override { } virtual ~NullIndexer() { }
virtual void AddPath(const std::string& path) override { } void AddPath(const std::string& path) noexcept override { }
virtual void RemovePath(const std::string& path) override { } void RemovePath(const std::string& path) noexcept override { }
virtual void GetPaths(std::vector<std::string>& paths) override { } void GetPaths(std::vector<std::string>& paths) noexcept override { }
virtual void Schedule(SyncType type) override { } void Schedule(SyncType type) noexcept override { }
virtual void Stop() override { } void Stop() noexcept override { }
virtual State GetState() override { return StateIdle; } State GetState() noexcept override { return StateIdle; }
} kNullIndexer; } kNullIndexer;
class RemoteLibrary::QueryCompletedMessage: public Message { class RemoteLibrary::QueryCompletedMessage: public Message {