配置
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.errorSquiggles": "Disabled", // 因为有clang的lint,所以关掉
|
||||||
"C_Cpp.autocomplete": "Disabled", // 因为有clang的补全,所以关掉
|
"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,
|
"clang.completion.enable": true,
|
||||||
"files.associations": {
|
"files.associations": {
|
||||||
"iostream": "cpp",
|
"iostream": "cpp",
|
||||||
|
|
|
@ -6,48 +6,13 @@
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"files.associations": {
|
"files.associations": {
|
||||||
"ctime": "cpp",
|
|
||||||
"iostream": "cpp",
|
"iostream": "cpp",
|
||||||
"new": "cpp",
|
|
||||||
"array": "cpp",
|
|
||||||
"atomic": "cpp",
|
|
||||||
"*.tcc": "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": "cpp",
|
||||||
"string_view": "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",
|
"sstream": "cpp",
|
||||||
"stdexcept": "cpp",
|
"stdexcept": "cpp",
|
||||||
"streambuf": "cpp",
|
"streambuf": "cpp"
|
||||||
"typeinfo": "cpp"
|
}
|
||||||
},
|
}
|
||||||
"files.encoding": "utf8"
|
|
||||||
},
|
|
||||||
|
|
||||||
}
|
}
|
Reference in a new issue