summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCollin <iCollin@users.noreply.github.com>2021-02-26 09:22:03 -0500
committerGitHub <noreply@github.com>2021-02-26 09:22:03 -0500
commit1c22fee408a14532d6304e176d4f101014e20678 (patch)
tree4bc0aa6ae2bf0d914e1764a9306a1ecbd74cb307
parentd8cd8066c636fecf8fe196fa7e95e39122f3533d (diff)
downloadsdl_core-1c22fee408a14532d6304e176d4f101014e20678.tar.gz
remove unused variable write pending (#3638)
-rw-r--r--src/components/hmi_message_handler/include/hmi_message_handler/websocket_session.h1
-rw-r--r--src/components/transport_manager/include/transport_manager/cloud/websocket_client_connection.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/components/hmi_message_handler/include/hmi_message_handler/websocket_session.h b/src/components/hmi_message_handler/include/hmi_message_handler/websocket_session.h
index 67a46aca56..9059bbed81 100644
--- a/src/components/hmi_message_handler/include/hmi_message_handler/websocket_session.h
+++ b/src/components/hmi_message_handler/include/hmi_message_handler/websocket_session.h
@@ -189,7 +189,6 @@ class WebsocketSession : public std::enable_shared_from_this<WebsocketSession> {
WebsocketSession& handler_;
sync_primitives::Lock queue_lock_;
sync_primitives::ConditionalVariable queue_new_items_;
- std::atomic_bool write_pending_;
std::atomic_bool shutdown_;
sync_primitives::Lock write_lock_;
diff --git a/src/components/transport_manager/include/transport_manager/cloud/websocket_client_connection.h b/src/components/transport_manager/include/transport_manager/cloud/websocket_client_connection.h
index 76c8ca73cd..0465effa94 100644
--- a/src/components/transport_manager/include/transport_manager/cloud/websocket_client_connection.h
+++ b/src/components/transport_manager/include/transport_manager/cloud/websocket_client_connection.h
@@ -183,7 +183,6 @@ class WebsocketClientConnection
WebsocketClientConnection& handler_;
sync_primitives::Lock queue_lock_;
sync_primitives::ConditionalVariable queue_new_items_;
- std::atomic_bool write_pending_;
std::atomic_bool shutdown_;
sync_primitives::Lock write_lock_;