欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

error: ‘to_string’ is not a member of ‘std’

程序员文章站 2022-07-13 22:19:04
...

在ROS里面用catkin_make编译的时候报错
error: ‘to_string’ is not a member of ‘std’
解决方法:
在CMakeList.txt里面加上这句话

add_compile_options(-std=c++11)

原因是to_string是c++11标准才可以使用的,同样QT也需要添加类似的语句,因为低版本的编译器不支持c++11.