Re-enable CppTools intellisense in codebase

This commit is contained in:
kayomn 2023-02-24 00:20:05 +00:00
parent 0bfd1c80ce
commit 62514f350e
2 changed files with 6 additions and 5 deletions

View File

@ -3,13 +3,13 @@
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/src"
"${workspaceFolder}/source"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"compilerPath": "/usr/bin/clang++",
"cStandard": "gnu17",
"cppStandard": "gnu++20",
"intelliSenseMode": "linux-gcc-x64"
"cppStandard": "c++20",
"intelliSenseMode": "linux-clang-x64"
}
],
"version": 4

View File

@ -6,5 +6,6 @@
"string_view": "cpp"
},
"editor.detectIndentation": false,
"editor.insertSpaces": false
"editor.insertSpaces": false,
"C_Cpp.errorSquiggles": "disabled",
}