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

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

程序员文章站 2022-07-13 22:18:46
...

cmake 编译时出现了这个问题
是因为编译器不支持
所以 加上 -std=c++11
在CMakeLists.txt文件里 把

add_compile_options(-std=c++11)

这一句打开