From 116dba12eb74edd8767cd3aa6b2fde974f373700 Mon Sep 17 00:00:00 2001 From: Francois Best Date: Fri, 24 Apr 2020 06:49:55 +0200 Subject: [PATCH] chore: Update compiler config file --- .vscode/c_cpp_properties.json | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 1ed9b10..6cdd995 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -18,7 +18,10 @@ "macFrameworkPath": [ "/System/Library/Frameworks", "/Library/Frameworks" - ] + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++17" }, { "name": "Linux", @@ -32,7 +35,10 @@ "/usr/include" ] }, - "intelliSenseMode": "clang-x64" + "intelliSenseMode": "clang-x64", + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++17" }, { "name": "Win32", @@ -46,8 +52,11 @@ "c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include" ] }, - "intelliSenseMode": "msvc-x64" + "intelliSenseMode": "msvc-x64", + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++17" } ], - "version": 3 + "version": 4 } \ No newline at end of file