使用ceres编译报错 error: ‘integer_sequence’ is not a member of ‘std‘

修改cmake 将设置c++标准的

set(CMAKE_CXX_FLAGS "-std=c++11")

替换为

set(CMAKE_CXX_STANDARD 11)

可以解决

新版本cmake设置c++标准都是下面这种方法
转自: https://blog.csdn.net/hitljy/article/details/109451706#commentBox

原文地址:https://www.cnblogs.com/long5683/p/14948041.html