Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions com.unity.robotics.ros-tcp-connector/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

### Fixed

Fixing bug in ROS2 where the getter TimeMsg nsecs caused a StackOverflowException


## [0.7.0-preview] - 2022-02-01

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public override string ToString()

// for convenience when writing ROS2 agnostic code
public uint secs { get => (uint)sec; set => sec = (int)value; }
public uint nsecs { get => nsecs; set => nsecs = value; }
public uint nsecs { get => nanosec; set => nanosec = value; }

public TimeMsg()
{
Expand Down