Skip to content

Commit

Permalink
Imported upstream version '1.1.1' of 'upstream'
Browse files Browse the repository at this point in the history
  • Loading branch information
lreiher committed Mar 18, 2024
1 parent 096f2d6 commit ab3bd25
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog for package message_tf_frame_transformer
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.1.1 (2024-03-19)
------------------
* Merge pull request #3 from clalancette/clalancette/fix-compile-error
Fix a compile error with modern rclcpp.
* Contributors: Lennart Reiher

1.1.0 (2023-06-10)
------------------
* integrate docker-ros
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class MessageTfFrameTransformer : public rclcpp::Node {

void detectMessageType();

void transformGeneric(const std::shared_ptr<rclcpp::SerializedMessage>& serialized_msg);
void transformGeneric(const std::shared_ptr<const rclcpp::SerializedMessage>& serialized_msg);

template <typename T>
void transform(const T& msg);
Expand Down Expand Up @@ -98,7 +98,7 @@ class MessageTfFrameTransformer : public rclcpp::Node {
rclcpp::TimerBase::SharedPtr detect_message_type_timer_;

rclcpp::GenericSubscription::SharedPtr subscriber_;

rclcpp::PublisherBase::SharedPtr publisher_;

std::string msg_type_;
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package format="3">

<name>message_tf_frame_transformer</name>
<version>1.1.0</version>
<version>1.1.1</version>
<description>Transforms messages of arbitrary type to a different frame using tf2::doTransform</description>

<maintainer email="[email protected]">Lennart Reiher</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion src/MessageTfFrameTransformer.ros2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ void MessageTfFrameTransformer::detectMessageType() {
}


void MessageTfFrameTransformer::transformGeneric(const std::shared_ptr<rclcpp::SerializedMessage>& serialized_msg) {
void MessageTfFrameTransformer::transformGeneric(const std::shared_ptr<const rclcpp::SerializedMessage>& serialized_msg) {

if (false) {}
#define MESSAGE_TYPE(TYPE, NAME) \
Expand Down

0 comments on commit ab3bd25

Please sign in to comment.