Skip to content

Commit

Permalink
Adapt signatures to fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzbichler authored and Duarte Fonseca committed Dec 10, 2024
1 parent b05ff33 commit 04f3ce9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class local_uds_server_endpoint_impl: public local_uds_server_endpoint_base_impl
bool add_connection(const client_t &_client,
const std::shared_ptr<connection> &_connection);
void remove_connection(const client_t &_client);
void accept_cbk(const connection::ptr& _connection,
void accept_cbk(connection::ptr _connection,
boost::system::error_code const &_error);
std::string get_remote_information(
const target_data_iterator_type _queue_iterator) const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ void local_uds_server_endpoint_impl::remove_connection(
}

void local_uds_server_endpoint_impl::accept_cbk(
const connection::ptr& _connection, boost::system::error_code const &_error) {
connection::ptr _connection, boost::system::error_code const &_error) {
if (_error != boost::asio::error::bad_descriptor
&& _error != boost::asio::error::operation_aborted
&& _error != boost::asio::error::no_descriptors) {
Expand Down

0 comments on commit 04f3ce9

Please sign in to comment.