Skip to content

Commit

Permalink
adss missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
Genna Eirich committed Jul 20, 2017
1 parent 8ba38c0 commit 3be8c82
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
{
"name": "Mac",
"includePath": [
"${workspaceRoot}",
"/usr/include",
"/usr/include/c++/4.2.1",
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
Expand All @@ -11,11 +12,13 @@
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"${workspaceRoot}",
"/usr/include",
"/usr/include/c++/4.2.1",
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
]
}
},
"intelliSenseMode": "clang-x64"
},
{
"name": "Linux",
Expand All @@ -26,9 +29,11 @@
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"/usr/include"
"/usr/include",
"${workspaceRoot}"
]
}
},
"intelliSenseMode": "clang-x64"
},
{
"name": "Win32",
Expand All @@ -39,9 +44,12 @@
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include"
"c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include",
"${workspaceRoot}"
]
}
},
"intelliSenseMode": "msvc-x64"
}
]
],
"version": 2
}

0 comments on commit 3be8c82

Please sign in to comment.