Skip to content

Don't pass -std=c++11 anymore

C++ 14 is actually required and there's CMAKE_CXX_STANDARD in src/CMakeLists.txt already, so just drop "-std=c++11".

This fixes the build with gcc 13, which otherwise complains: "error: use of 'auto' in lambda parameter declaration only available with '-std=c++14' or '-std=gnu++14'".

Merge request reports