diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 1fabea9..a0dc464 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -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 diff --git a/.vscode/settings.json b/.vscode/settings.json index 238540b..c7fc5d2 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,5 +6,6 @@ "string_view": "cpp" }, "editor.detectIndentation": false, - "editor.insertSpaces": false + "editor.insertSpaces": false, + "C_Cpp.errorSquiggles": "disabled", }