{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.17763.0",
"compilerPath": "C:/Program Files/LLVM/bin/clang-cl.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
Type: LanguageService
Describe the bug
__attribute__((foo))syntax as a problem on Windows.To Reproduce
c_cpp_properties.json:__attribute((unused)).unnamed prototyped parameters not allowed when body is presentexpected a type specifierExpected behavior
I expect Visual Studio Code to not point this out as a problem, because this syntax works just fine when using clang.