cpptools intellisense didn't worked as expected

This commit is contained in:
Alex 2023-03-05 00:22:25 +02:00
parent 5c91f23527
commit 77237f70fb
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -3,6 +3,7 @@
{
"name": "Fennix x64 (Linux, GCC, debug)",
"includePath": [
"${workspaceFolder}/include",
"${workspaceFolder}/include/**"
],
"defines": [
@ -49,7 +50,12 @@
"-fverbose-asm",
"-fstack-usage",
"-fstack-check",
"-fsanitize=undefined"
"-fsanitize=undefined",
// VSCode flags
"-ffreestanding",
"-nostdinc",
"-nostdinc++"
]
},
{
@ -104,7 +110,12 @@
"-fverbose-asm",
"-fstack-usage",
"-fstack-check",
"-fsanitize=undefined"
"-fsanitize=undefined",
// VSCode flags
"-ffreestanding",
"-nostdinc",
"-nostdinc++"
]
}
],