Skip to content

Commit

Permalink
Various fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
roncapat committed Oct 26, 2023
1 parent f01582c commit 1c1427a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rosbag2_transport/test/rosbag2_transport/test_play.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ class RosBag2PlayQosOverrideTestFixture : public RosBag2PlayTestFixture

std::vector<rclcpp::QoS> casted;
casted.reserve(offered_qos.size());
std::copy(offered_qos.begin(), offered_qos.end(), casted.begin());
std::copy(offered_qos.begin(), offered_qos.end(), std::back_inserter(casted));

topic_types_.push_back({topic_name_, msg_type_, "", casted, ""});
}
Expand Down

0 comments on commit 1c1427a

Please sign in to comment.