0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 21:48:48 +00:00

feat(debug): use C++14

This commit is contained in:
Baoshuo Ren 2021-11-25 19:45:31 +08:00 committed by Baoshuo Ren
parent b8eb3ce10a
commit db581675ea
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

23
.vscode/tasks.json vendored
View File

@ -7,7 +7,7 @@
"windows": {
"command": "g++",
"args": [
"--std=c++11",
"-std=c++14",
"-g",
"\"${file}\"",
"-o",
@ -17,7 +17,7 @@
"linux": {
"command": "/usr/bin/g++",
"args": [
"--std=c++11",
"-std=c++14",
"-g",
"\"${file}\"",
"-o",
@ -50,24 +50,5 @@
"panel": "shared"
}
}
// ,
// {
// "type": "shell",
// "label": "C/C++: g++ build active file",
// "command": "/usr/bin/g++",
// "args": [
// "-g",
// "${file}",
// "-o",
// "${fileDirname}/${fileBasenameNoExtension}"
// ],
// "options": {
// "cwd": "${workspaceFolder}"
// },
// "problemMatcher": [
// "$gcc"
// ],
// "group": "build"
// }
]
}