boost::this_thread::sleep (boost::posix_time::microseconds (100000))报错“this_thread”:“::”左侧的符号必须是一种类型

点云配准

报错:
boost::this_thread::sleep (boost::posix_time::microseconds (100000))
“this_thread”:“::”左侧的符号必须是一种类型
“sleep”: 不是 “boost” 的成员
“sleep”: 找不到标识符
解决方法一:

boost::this_thread::sleep (boost::posix_time::microseconds (100000))
//改成:
添加头文件:
#include 
#include 
std::this_thread::sleep_for(std::chrono::microseconds(100000));

解决方法二:
添加头文件

#include 

你可能感兴趣的:(pcl点云库学习记录,c++,visual,studio)