How to enable C++17 support in VSCode C++ Extension

巧了我就是萌 提交于 2019-12-10 09:35:41

问题


I keep on getting error squiggles on std::string_view, but I am able to build just fine. Is there a way to tell intellisense or the C++ linter to use C++17?

The specific error I get is:

namespace "std" has no member "string_view"

回答1:


There's a posting in their GitHub issue tracker about this: std::string_view intellisense missing (CMake, VC++ 2017).

In another issue, it is said that the extension defaults to C++17, but does not yet support all of C++17 features: Setting C++ standard.

This is confirmed by c_cpp_properties.json Reference Guide, where an option is listed cppStandard which defaults to C++17. (To edit this file, press Ctrl + Shift + P and type in C/CPP: Edit Configurations).

It appears, then, they just don't have full support yet.



来源:https://stackoverflow.com/questions/49397233/how-to-enable-c17-support-in-vscode-c-extension

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!