Delete void returns

This commit is contained in:
Antonio cuadros
2021-07-22 07:57:54 +02:00
parent ce149628b4
commit 43a1ce2283
+2 -2
View File
@@ -173,12 +173,12 @@ bool Agent::create(
void Agent::run() void Agent::run()
{ {
return xrce_dds_agent_instance_.run(); xrce_dds_agent_instance_.run();
} }
void Agent::stop() void Agent::stop()
{ {
return xrce_dds_agent_instance_.stop(); xrce_dds_agent_instance_.stop();
} }
std::shared_ptr<graph_manager::GraphManager> Agent::find_or_create_graph_manager(eprosima::fastdds::dds::DomainId_t domain_id) std::shared_ptr<graph_manager::GraphManager> Agent::find_or_create_graph_manager(eprosima::fastdds::dds::DomainId_t domain_id)