attempt at reading json file

This commit is contained in:
Bechir Braham
2024-02-14 18:37:14 +01:00
parent 079d519e96
commit 66f87b0f51
27 changed files with 324 additions and 110 deletions

View File

@ -6,10 +6,10 @@
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"compilerPath": "/usr/bin/g++",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "linux-clang-x64",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.cmake-tools"
}
],

23
.vscode/settings.json vendored
View File

@ -52,6 +52,25 @@
"streambuf": "cpp",
"cinttypes": "cpp",
"typeinfo": "cpp",
"filesystem": "cpp"
}
"filesystem": "cpp",
"csignal": "cpp",
"cstring": "cpp",
"any": "cpp",
"condition_variable": "cpp",
"forward_list": "cpp",
"list": "cpp",
"map": "cpp",
"set": "cpp",
"unordered_set": "cpp",
"fstream": "cpp",
"mutex": "cpp",
"ranges": "cpp",
"semaphore": "cpp",
"span": "cpp",
"stop_token": "cpp",
"thread": "cpp",
"valarray": "cpp",
"variant": "cpp"
},
"C_Cpp.errorSquiggles": "enabled"
}