Skip to content

Commit

Permalink
outofcore: Explictly use mt19937 random generator for boost 1.67.
Browse files Browse the repository at this point in the history
  • Loading branch information
de-vri-es committed Jun 11, 2018
1 parent cf5667d commit 227a161
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ namespace pcl
OutofcoreOctreeDiskContainer<PointT>::rand_gen_ (static_cast<unsigned int> (std::time(NULL)));

template<typename PointT>
boost::uuids::random_generator OutofcoreOctreeDiskContainer<PointT>::uuid_gen_ (&rand_gen_);
boost::uuids::basic_random_generator<boost::mt19937> OutofcoreOctreeDiskContainer<PointT>::uuid_gen_ (&rand_gen_);

template<typename PointT>
const uint64_t OutofcoreOctreeDiskContainer<PointT>::READ_BLOCK_SIZE_ = static_cast<uint64_t> (2e12);
Expand Down

0 comments on commit 227a161

Please sign in to comment.