天天看點

error: ISO C forbids declaration of ‘d’ with no type [-fpermissive]

遇到了這個錯誤,error: ISO C forbids declaration of ‘d’ with no type [-fpermissive]

網上查了查,看到有網友在評論區說這個可能也可能是因為沒有添加C++11标準支援引起的,突然想到自己的确忘記添加支援了,果然解決了

在CMakeLists.txt中添加一行:

set(CMAKE_CXX_FLAGS “-std=c++11”)