How to enable C++17 support in VSCode C++ Extension
问题 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