db/DatabaseListener: add noexcept

This commit is contained in:
Max Kellermann
2019-04-24 14:57:30 +02:00
parent 1b62adc894
commit c7c303eec3
4 changed files with 9 additions and 8 deletions

View File

@@ -34,13 +34,13 @@ public:
* thread that has created the #Database instance and that
* runs the #EventLoop.
*/
virtual void OnDatabaseModified() = 0;
virtual void OnDatabaseModified() noexcept = 0;
/**
* During database update, a song is about to be removed from
* the database because the file has disappeared.
*/
virtual void OnDatabaseSongRemoved(const char *uri) = 0;
virtual void OnDatabaseSongRemoved(const char *uri) noexcept = 0;
};
#endif