aboutsummaryrefslogtreecommitdiff
path: root/zenhttp/websocketasio.cpp
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2022-02-22 09:23:54 +0100
committerPer Larsson <[email protected]>2022-02-22 09:23:54 +0100
commita108c89671009337241c6989610ada1529250743 (patch)
treeb15eeae55f89dca4aea2e47d379a9e921d7f55cb /zenhttp/websocketasio.cpp
parentMerge branch 'main' of https://github.com/EpicGames/zen (diff)
downloadzen-a108c89671009337241c6989610ada1529250743.tar.xz
zen-a108c89671009337241c6989610ada1529250743.zip
Added missing override specifier.
Diffstat (limited to 'zenhttp/websocketasio.cpp')
-rw-r--r--zenhttp/websocketasio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zenhttp/websocketasio.cpp b/zenhttp/websocketasio.cpp
index 12b762b12..966925d98 100644
--- a/zenhttp/websocketasio.cpp
+++ b/zenhttp/websocketasio.cpp
@@ -1090,8 +1090,8 @@ public:
virtual std::future<bool> Connect(const WebSocketConnectInfo& Info) override;
virtual void Disconnect() override;
- virtual bool IsConnected() const { return false; }
- virtual WebSocketState State() const { return static_cast<WebSocketState>(m_State.load()); }
+ virtual bool IsConnected() const override { return false; }
+ virtual WebSocketState State() const override { return static_cast<WebSocketState>(m_State.load()); }
virtual std::future<WebSocketMessage> SendRequest(WebSocketMessage&& Request) override;
virtual void OnNotification(NotificationCallback&& Cb) override;