配置
This commit is contained in:
parent
21c89b4f79
commit
293e4be1e9
2 changed files with 4 additions and 48 deletions
11
.vscode/settings.json
vendored
11
.vscode/settings.json
vendored
|
@ -20,16 +20,7 @@
|
|||
"C_Cpp.errorSquiggles": "Disabled", // 因为有clang的lint,所以关掉
|
||||
"C_Cpp.autocomplete": "Disabled", // 因为有clang的补全,所以关掉
|
||||
|
||||
"clang.cflags": [ // 控制c语言静态检测的参数
|
||||
"--target=x86_64-w64-mingw",
|
||||
"-std=c11",
|
||||
"-Wall"
|
||||
],
|
||||
"clang.cxxflags": [ // 控制c++静态检测时的参数
|
||||
"--target=x86_64-w64-mingw",
|
||||
"-std=c++17",
|
||||
"-Wall"
|
||||
],
|
||||
|
||||
"clang.completion.enable": true,
|
||||
"files.associations": {
|
||||
"iostream": "cpp",
|
||||
|
|
|
@ -6,48 +6,13 @@
|
|||
],
|
||||
"settings": {
|
||||
"files.associations": {
|
||||
"ctime": "cpp",
|
||||
"iostream": "cpp",
|
||||
"new": "cpp",
|
||||
"array": "cpp",
|
||||
"atomic": "cpp",
|
||||
"*.tcc": "cpp",
|
||||
"cctype": "cpp",
|
||||
"clocale": "cpp",
|
||||
"cmath": "cpp",
|
||||
"cstdarg": "cpp",
|
||||
"cstddef": "cpp",
|
||||
"cstdint": "cpp",
|
||||
"cstdio": "cpp",
|
||||
"cstdlib": "cpp",
|
||||
"cwchar": "cpp",
|
||||
"cwctype": "cpp",
|
||||
"deque": "cpp",
|
||||
"unordered_map": "cpp",
|
||||
"vector": "cpp",
|
||||
"exception": "cpp",
|
||||
"algorithm": "cpp",
|
||||
"memory": "cpp",
|
||||
"memory_resource": "cpp",
|
||||
"optional": "cpp",
|
||||
"string": "cpp",
|
||||
"string_view": "cpp",
|
||||
"system_error": "cpp",
|
||||
"tuple": "cpp",
|
||||
"type_traits": "cpp",
|
||||
"utility": "cpp",
|
||||
"fstream": "cpp",
|
||||
"initializer_list": "cpp",
|
||||
"iosfwd": "cpp",
|
||||
"istream": "cpp",
|
||||
"limits": "cpp",
|
||||
"ostream": "cpp",
|
||||
"sstream": "cpp",
|
||||
"stdexcept": "cpp",
|
||||
"streambuf": "cpp",
|
||||
"typeinfo": "cpp"
|
||||
},
|
||||
"files.encoding": "utf8"
|
||||
},
|
||||
|
||||
"streambuf": "cpp"
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue