Use std::uint* types. (#265) (#266)

Co-authored-by: Mike Purvis <mike@uwmike.com>
This commit is contained in:
Ruffin
2020-03-16 13:08:48 -07:00
committed by GitHub
parent 1273c7581d
commit 36eb607be7
4 changed files with 19 additions and 19 deletions
@@ -109,7 +109,7 @@ struct StampTestData
explicit StampTestData(const rclcpp::Time &stamp)
: stamp_(stamp)
{
pcl::uint64_t pcl_stamp;
std::uint64_t pcl_stamp;
pcl_conversions::toPCL(stamp_, pcl_stamp);
pcl_conversions::fromPCL(pcl_stamp, stamp2_);
}