Skip to content

Commit

Permalink
minor warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rex-schilasky committed Jan 30, 2025
1 parent 8c95e24 commit d5c8f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecal/tests/cpp/pubsub_test/src/pubsub_acknowledge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ TEST(core_cpp_pubsub, TimeoutAcknowledgment)
// create publisher
eCAL::CPublisher pub("topic", {}, pub_config);
auto sub1 = std::make_shared< eCAL::CSubscriber>("topic");
auto sleeper_variable_time = [](const eCAL::STopicId& topic_id_, const eCAL::SDataTypeInformation& /*data_type_info_*/, const eCAL::SReceiveCallbackData& data_)
auto sleeper_variable_time = [](const eCAL::STopicId& /*topic_id_*/, const eCAL::SDataTypeInformation& /*data_type_info_*/, const eCAL::SReceiveCallbackData& data_)
{
std::string const sleep_time((const char*)data_.buf, data_.size);
int const sleep = std::stoi(sleep_time);
Expand Down

0 comments on commit d5c8f4e

Please sign in to comment.