Skip to content

Commit 1402f0d

Browse files
committed
Refactor code formatting for improved readability in odom_class and paa5160e1_driver_node
1 parent 9835a63 commit 1402f0d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

paa5160e1_driver_node/include/paa5160e1_driver_node/odom_class.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,3 @@ class OdomClass
3939
} // namespace paa5160e1_driver_node
4040

4141
#endif // ____PAA5160E1_DRIVER_NODE_ODOM_CLASS_HPP__
42-

paa5160e1_driver_node/src/odom_class.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,3 @@ std::tuple<float, float, float, uint32_t, uint32_t> OdomClass::get_data() const
8585
}
8686

8787
} // namespace paa5160e1_driver_node
88-

paa5160e1_driver_node/src/paa5160e1_driver_node.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ void Paa5160e1DriverNode::timerCallback()
7979
}
8080

8181
rclcpp::Time stamp;
82-
stamp = rclcpp::Time(static_cast<int64_t>(sec + time_offset_), static_cast<uint32_t>(msec) * 1000000u);
82+
stamp = rclcpp::Time(
83+
static_cast<int64_t>(sec + time_offset_),
84+
static_cast<uint32_t>(msec) * 1000000u);
8385

8486
// Publish odom: base pose has translation only; orientation = identity
8587
nav_msgs::msg::Odometry odom;

0 commit comments

Comments
 (0)