跳转至

Vscode

C++环境配置

使用clangd,配置标准为C++17,提示头文件。

{
    "clangd.arguments": [
        "--compile-commands-dir=<path_to_compile_commands.json>",
        "--fallback-style=google",
        "--header-insertion=iwyu",
        "--suggest-missing-includes",
        "-std=c++17"
    ]
}