Skip to content

Commit c1ec95b

Browse files
committed
fix(tier4_autoware_utils): remove std
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
1 parent 3370315 commit c1ec95b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/tier4_autoware_utils/include/tier4_autoware_utils/ros/published_time_publisher.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class PublishedTimePublisher
9191
{
9292
bool operator()(const rmw_gid_t & lhs, const rmw_gid_t & rhs) const
9393
{
94-
return std::memcmp(lhs.data, rhs.data, RMW_GID_STORAGE_SIZE) < 0;
94+
return memcmp(lhs.data, rhs.data, RMW_GID_STORAGE_SIZE) < 0;
9595
}
9696
};
9797

0 commit comments

Comments
 (0)