0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-27 17:16:28 +00:00

debug: use C++11

This commit is contained in:
Baoshuo Ren 2021-07-05 17:27:18 +08:00 committed by Baoshuo Ren
parent 96c040b270
commit dc89802b4b
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

2
.vscode/tasks.json vendored
View File

@ -7,6 +7,7 @@
"windows": {
"command": "g++",
"args": [
"--std=c++11",
"-g",
"\"${file}\"",
"-o",
@ -16,6 +17,7 @@
"linux": {
"command": "/usr/bin/g++",
"args": [
"--std=c++11",
"-g",
"\"${file}\"",
"-o",