diff options
author | Matt Strapp <strap012@umn.edu> | 2020-10-04 10:22:36 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2020-10-04 10:22:36 -0500 |
commit | 2396e627d886f4b4836061869c9cd98de8a7d5f7 (patch) | |
tree | 30f7c35112c4e215cef37257166daa32751d1b71 | |
parent | fix a formatting (diff) | |
download | csci4061-2396e627d886f4b4836061869c9cd98de8a7d5f7.tar csci4061-2396e627d886f4b4836061869c9cd98de8a7d5f7.tar.gz csci4061-2396e627d886f4b4836061869c9cd98de8a7d5f7.tar.bz2 csci4061-2396e627d886f4b4836061869c9cd98de8a7d5f7.tar.lz csci4061-2396e627d886f4b4836061869c9cd98de8a7d5f7.tar.xz csci4061-2396e627d886f4b4836061869c9cd98de8a7d5f7.tar.zst csci4061-2396e627d886f4b4836061869c9cd98de8a7d5f7.zip |
Add a .vscode because clang was default for some reason
Diffstat (limited to '')
-rw-r--r-- | .vscode/c_cpp_properties.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..6e1b9ed --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,16 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "c11", + "cppStandard": "c++14", + "intelliSenseMode": "gcc-x64" + } + ], + "version": 4 +}
\ No newline at end of file |