first test removing single number that is diffrent to the rest

This commit is contained in:
Seth Samuel 2024-12-09 15:19:14 +13:00
parent 625cb4986f
commit d24974703f
12 changed files with 56 additions and 40 deletions

View file

@ -1,5 +0,0 @@
{
"files.associations": {
"*.tcc": "cpp"
}
}

18
.vscode/tasks.json vendored
View file

@ -2,22 +2,20 @@
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc build active file",
"command": "/usr/bin/g++",
"label": "C/C++: cl.exe build active file",
"command": "cl.exe",
"args": [
"--std",
"gnu++23",
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
"/Zi",
"/EHsc",
"/nologo",
"/Fe${fileDirname}\\${fileBasenameNoExtension}.exe",
"${file}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
"$msCompile"
],
"group": {
"kind": "build",