You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
Fix some issues found by cppcheck.
This commit is contained in:
@@ -51,14 +51,14 @@ public:
|
||||
static RemoteDebuggerPeer *create(const String &p_uri);
|
||||
|
||||
Error connect_to_host(const String &p_uri);
|
||||
bool is_peer_connected();
|
||||
int get_max_message_size() const;
|
||||
bool has_message();
|
||||
Error put_message(const Array &p_arr);
|
||||
Array get_message();
|
||||
void close();
|
||||
void poll();
|
||||
bool can_block() const;
|
||||
bool is_peer_connected() override;
|
||||
int get_max_message_size() const override;
|
||||
bool has_message() override;
|
||||
Error put_message(const Array &p_arr) override;
|
||||
Array get_message() override;
|
||||
void close() override;
|
||||
void poll() override;
|
||||
bool can_block() const override;
|
||||
|
||||
RemoteDebuggerPeerWebSocket(Ref<WebSocketPeer> p_peer = Ref<WebSocketPeer>());
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user