Skip to content

Commit 116dba1

Browse files
committed
chore: Update compiler config file
1 parent aa4912b commit 116dba1

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.vscode/c_cpp_properties.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@
1818
"macFrameworkPath": [
1919
"/System/Library/Frameworks",
2020
"/Library/Frameworks"
21-
]
21+
],
22+
"compilerPath": "/usr/bin/clang",
23+
"cStandard": "c11",
24+
"cppStandard": "c++17"
2225
},
2326
{
2427
"name": "Linux",
@@ -32,7 +35,10 @@
3235
"/usr/include"
3336
]
3437
},
35-
"intelliSenseMode": "clang-x64"
38+
"intelliSenseMode": "clang-x64",
39+
"compilerPath": "/usr/bin/clang",
40+
"cStandard": "c11",
41+
"cppStandard": "c++17"
3642
},
3743
{
3844
"name": "Win32",
@@ -46,8 +52,11 @@
4652
"c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include"
4753
]
4854
},
49-
"intelliSenseMode": "msvc-x64"
55+
"intelliSenseMode": "msvc-x64",
56+
"compilerPath": "/usr/bin/clang",
57+
"cStandard": "c11",
58+
"cppStandard": "c++17"
5059
}
5160
],
52-
"version": 3
61+
"version": 4
5362
}

0 commit comments

Comments
 (0)