-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rclcpp::Time(int64_t nanoseconds, ...) should check for negative time
ros2/rclcpp#2507 Signed-off-by: Tomoya Fujita <[email protected]>
- Loading branch information
1 parent
5beec96
commit 886f1da
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#include "rclcpp/rclcpp.hpp" | ||
|
||
int main(void) | ||
{ | ||
RCLCPP_INFO_STREAM(rclcpp::get_logger(""), "Negative rclcpp::Time with int64_t ns"); | ||
const auto negative_ns = rclcpp::Time(-1); | ||
RCLCPP_INFO_STREAM(rclcpp::get_logger(""), "Negative rclcpp::Time with int32_t s, uint32_t ns"); | ||
const auto negative_s_ns = rclcpp::Time(-1, 0); | ||
return 0; | ||
} |