Skip to content

Commit

Permalink
Cleanup: Remove a ton of unnecessary ";" (that cause pedantic warnings).
Browse files Browse the repository at this point in the history
  • Loading branch information
KerstinKeller committed Nov 16, 2023
1 parent b452890 commit b57dd0f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/mon/mon_tui/src/tui/command_manager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,4 +180,4 @@ std::shared_ptr<CommandDescriptionMap> CreateCommandDescriptionMap()
{Command::HELP, "Show help view"},
{Command::SYSTEM_INFORMATION, "Show system info view"},
});
};
}
2 changes: 1 addition & 1 deletion ecal/service/ecal_service/src/log_helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ namespace eCAL
}

return local_endpoint_string + " -> " + remote_endpoint_string;
};
}

inline std::string endpoint_to_string(const asio::ip::tcp::endpoint& endpoint)
{
Expand Down
2 changes: 1 addition & 1 deletion ecal/service/ecal_service/src/protocol_v0.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ namespace eCAL

void async_send_payload_with_header (asio::ip::tcp::socket& socket, std::mutex& socket_mutex, const std::shared_ptr<const eCAL::service::TcpHeaderV1>& header_buffer, const std::shared_ptr<const std::string>& payload_buffer, const ErrorCallbackT& error_cb, const SendSuccessCallback& success_cb);
void async_receive_payload_with_header(asio::ip::tcp::socket& socket, std::mutex& socket_mutex, const ErrorCallbackT& error_cb, const ReceiveSuccessCallback& success_cb);
};
}
}
}
2 changes: 1 addition & 1 deletion ecal/service/ecal_service/src/protocol_v1.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ namespace eCAL

void async_send_payload (asio::ip::tcp::socket& socket, std::mutex& socket_mutex, const std::shared_ptr<const eCAL::service::TcpHeaderV1>& header_buffer, const std::shared_ptr<const std::string>& payload_buffer, const ErrorCallbackT& error_cb, const SendSuccessCallback& success_cb);
void async_receive_payload(asio::ip::tcp::socket& socket, std::mutex& socket_mutex, const ErrorCallbackT& error_cb, const ReceiveSuccessCallback& success_cb);
};
}
}
}
2 changes: 1 addition & 1 deletion testing/ecal/clientserver_test/src/clientserver_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ namespace
std::cout << "Execution error msg : " << service_response_.error_msg << std::endl;
std::cout << "Response : " << service_response_.response << std::endl << std::endl;
std::cout << std::endl;
};
}
}

#if ClientConnectEventTest
Expand Down

0 comments on commit b57dd0f

Please sign in to comment.