Skip to content

Commit

Permalink
Uncrustify
Browse files Browse the repository at this point in the history
Signed-off-by: tempate <[email protected]>
  • Loading branch information
Tempate committed Nov 7, 2023
1 parent d105066 commit 9b771da
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion fastddsspy_tool/src/cpp/tool/Backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ Backend::~Backend()
pipe_->disable();
}

utils::ReturnCode Backend::reload_configuration(const yaml::Configuration& new_configuration)
utils::ReturnCode Backend::reload_configuration(
const yaml::Configuration& new_configuration)
{
return pipe_->reload_configuration(new_configuration.ddspipe_configuration);
}
Expand Down
3 changes: 2 additions & 1 deletion fastddsspy_tool/src/cpp/tool/Backend.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ class Backend

~Backend();

utils::ReturnCode reload_configuration(const yaml::Configuration& new_configuration);
utils::ReturnCode reload_configuration(
const yaml::Configuration& new_configuration);

std::shared_ptr<eprosima::spy::participants::SpyModel> model() const noexcept;

Expand Down
3 changes: 2 additions & 1 deletion fastddsspy_tool/src/cpp/tool/Controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ void Controller::one_shot_run(
run_command_(input_.parse_as_command(args));
}

utils::ReturnCode Controller::reload_configuration(const yaml::Configuration& new_configuration)
utils::ReturnCode Controller::reload_configuration(
const yaml::Configuration& new_configuration)
{
return backend_.reload_configuration(new_configuration);
}
Expand Down

0 comments on commit 9b771da

Please sign in to comment.