Skip to content

Commit

Permalink
fix(tier4_autoware_utils): remove std
Browse files Browse the repository at this point in the history
Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota committed Mar 17, 2024
1 parent 3370315 commit c1ec95b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class PublishedTimePublisher
{
bool operator()(const rmw_gid_t & lhs, const rmw_gid_t & rhs) const
{
return std::memcmp(lhs.data, rhs.data, RMW_GID_STORAGE_SIZE) < 0;
return memcmp(lhs.data, rhs.data, RMW_GID_STORAGE_SIZE) < 0;
}
};

Expand Down

0 comments on commit c1ec95b

Please sign in to comment.