From 139b419cef3202ddc24d1f0ddee64dd9e4e032e4 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Thu, 9 Aug 2018 20:48:23 -0700 Subject: [PATCH] c_cpp_properties.json --- .vscode/c_cpp_properties.json | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index eb825ae..a2bb167 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -19,7 +19,7 @@ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/include", "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include", "/usr/include", - "${workspaceRoot}/include" + "${workspaceRoot}/include" ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" @@ -27,7 +27,10 @@ "macFrameworkPath": [ "/System/Library/Frameworks", "/Library/Frameworks" - ] + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++17" }, { "name": "Linux", @@ -46,7 +49,10 @@ ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" - } + }, + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++17" }, { "name": "Win32", @@ -67,8 +73,11 @@ ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" - } + }, + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++17" } ], - "version": 3 + "version": 4 } \ No newline at end of file