Skip to content

Commit

Permalink
Refs #21458: Uncrustify
Browse files Browse the repository at this point in the history
Signed-off-by: Carlosespicur <[email protected]>
  • Loading branch information
Carlosespicur committed Sep 11, 2024
1 parent ee72b82 commit c9a4bbb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion include/fastdds_monitor/Engine.h
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ class Engine : public QQmlApplicationEngine
//! Retrieve the data type name associated to a specific entity
std::string get_data_type_name(
const backend::EntityId& entity_id);

//! Retrieve the IDL representation associated to a specific data type
std::string get_type_idl(
const backend::EntityId& entity_id);
Expand Down
4 changes: 2 additions & 2 deletions include/fastdds_monitor/backend/SyncBackendConnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ class SyncBackendConnection
//! Get the alias of an entity from the Backend by calling \c get_info
std::string get_alias(
backend::EntityId id);

//! Get the data type name of an entity from the Backend by calling \c get_info
std::string get_data_type_name(
backend::EntityId id);

//! Get the status level of an entity from the Backend by calling \c get_status
StatusLevel get_status(
backend::EntityId id);
Expand Down
3 changes: 2 additions & 1 deletion src/Engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,8 @@ void Engine::init_monitor(
else
{
process_error(
"Error trying to initialize monitor in Discovery Server with locators: " + utils::to_string(discovery_server_locators),
"Error trying to initialize monitor in Discovery Server with locators: " +
utils::to_string(discovery_server_locators),
ErrorType::INIT_DS_MONITOR);
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/backend/SyncBackendConnection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -966,12 +966,12 @@ std::string SyncBackendConnection::get_type_idl(
{
return StatisticsBackend::get_type_idl(id);
}
catch(const std::exception& e)
catch (const std::exception& e)
{
qWarning() << "Fail getting the IDL type for entity id " << id.value() << ": " << e.what();
return "";
}

}

void SyncBackendConnection::change_unit_magnitude(
Expand Down

0 comments on commit c9a4bbb

Please sign in to comment.