mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 21:03:30 -07:00
Add missing 'override' specifier
This fixes clang warning: 'notify' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
This commit is contained in:
parent
7aa5bc4bc1
commit
c60b7b213e
3 changed files with 3 additions and 3 deletions
|
@ -88,7 +88,7 @@ public:
|
|||
explicit WebApplication(QObject *parent = nullptr);
|
||||
~WebApplication() override;
|
||||
|
||||
Http::Response processRequest(const Http::Request &request, const Http::Environment &env);
|
||||
Http::Response processRequest(const Http::Request &request, const Http::Environment &env) override;
|
||||
|
||||
QString clientId() const override;
|
||||
WebSession *session() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue