16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 13:39:18 +02:00

reformat: remove redundant qualifiers

This commit is contained in:
jerrrrycho
2026-07-04 05:34:23 +02:00
parent 20e7a99516
commit cf9fb07800
98 changed files with 2290 additions and 2290 deletions

View File

@@ -222,7 +222,7 @@ std::shared_ptr<network::server> network::tcp::asio_manager::create_server(std::
int port;
stream >> port;
return std::make_shared<tcp::server>(backbuffer, io_context, host, port);
return std::make_shared<server>(backbuffer, io_context, host, port);
}
std::shared_ptr<network::client> network::tcp::asio_manager::create_client(const std::string &conf) {
@@ -234,7 +234,7 @@ std::shared_ptr<network::client> network::tcp::asio_manager::create_client(const
int port;
stream >> port;
return std::make_shared<tcp::client>(io_context, host, port);
return std::make_shared<client>(io_context, host, port);
}
void network::tcp::asio_manager::update() {

View File

@@ -67,7 +67,7 @@ namespace network::tcp
client(asio::io_context &io_ctx, const std::string &host, uint32_t port);
};
class asio_manager : public network::backend_manager {
class asio_manager : public backend_manager {
asio::io_context io_context;
public: