We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VS code was working fine, then I upgraded to Mac Catalina, and I now have this error
#include errors detected. Please update your includePath. Squiggles are disabled for this translation unit
Also this error
cannot open source file "iostream" cannot open source file "iomanip" etc...
My c_cpp_properties.json is
{ "configurations": [ { "name": "Mac", "includePath": [ "${workspaceFolder}/**" ], "defines": [], "macFrameworkPath": [ "/System/Library/Frameworks", "/Library/Frameworks" ], "intelliSenseMode": "clang-x64" } ], "version": 4 }
and my settings.json is
{ "files.associations": { "iostream": "cpp", "iosfwd": "cpp" } }
I need this to work. Please help!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
VS code was working fine, then I upgraded to Mac Catalina, and I now have this error
#include errors detected. Please update your includePath. Squiggles are disabled for this translation unit
Also this error
cannot open source file "iostream"
cannot open source file "iomanip" etc...
My c_cpp_properties.json is
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"macFrameworkPath": [
"/System/Library/Frameworks",
"/Library/Frameworks"
],
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
and my settings.json is
{
"files.associations": {
"iostream": "cpp",
"iosfwd": "cpp"
}
}
I need this to work. Please help!
The text was updated successfully, but these errors were encountered: