Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/Simple-WebSocket-Server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreidheim <eidheim@gmail.com>2020-01-18 22:32:01 +0300
committereidheim <eidheim@gmail.com>2020-01-18 22:32:01 +0300
commit018fc740414638b59027d2b371bf9fc57dddedc6 (patch)
tree6d736a83a976f50a028b1cbb3dadab5b9350ed9b
parent839596d77dbc860816358ef90338926620a1dbd7 (diff)
Removed unused member variables
-rw-r--r--client_ws.hpp1
-rw-r--r--server_ws.hpp1
2 files changed, 0 insertions, 2 deletions
diff --git a/client_ws.hpp b/client_ws.hpp
index d2389ab..3c9679e 100644
--- a/client_ws.hpp
+++ b/client_ws.hpp
@@ -40,7 +40,6 @@ namespace SimpleWeb {
InMessage(unsigned char fin_rsv_opcode, std::size_t length) noexcept : std::istream(&streambuf), fin_rsv_opcode(fin_rsv_opcode), length(length) {}
std::size_t length;
asio::streambuf streambuf;
- std::unique_ptr<std::string> cached_string;
};
/// The buffer is consumed during send operations.
diff --git a/server_ws.hpp b/server_ws.hpp
index dcce130..96205dc 100644
--- a/server_ws.hpp
+++ b/server_ws.hpp
@@ -53,7 +53,6 @@ namespace SimpleWeb {
InMessage(unsigned char fin_rsv_opcode, std::size_t length) noexcept : std::istream(&streambuf), fin_rsv_opcode(fin_rsv_opcode), length(length) {}
std::size_t length;
asio::streambuf streambuf;
- std::unique_ptr<std::string> cached_string;
};
/// The buffer is not consumed during send operations.