diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 8166321a..b6949b04 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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" - // } ] -} \ No newline at end of file +}