diff options
| author | RossTheRoss <msattr@gmail.com> | 2020-02-13 09:25:20 -0600 | 
|---|---|---|
| committer | RossTheRoss <msattr@gmail.com> | 2020-02-13 09:25:20 -0600 | 
| commit | 1f8ec7bdbc4baa18542ccbc9ceef9098c1d77afb (patch) | |
| tree | 274c691a7fc572dcecbf4c34cdef0fadaf2c27e8 | |
| parent | ? (diff) | |
| download | homework-1f8ec7bdbc4baa18542ccbc9ceef9098c1d77afb.tar homework-1f8ec7bdbc4baa18542ccbc9ceef9098c1d77afb.tar.gz homework-1f8ec7bdbc4baa18542ccbc9ceef9098c1d77afb.tar.bz2 homework-1f8ec7bdbc4baa18542ccbc9ceef9098c1d77afb.tar.lz homework-1f8ec7bdbc4baa18542ccbc9ceef9098c1d77afb.tar.xz homework-1f8ec7bdbc4baa18542ccbc9ceef9098c1d77afb.tar.zst homework-1f8ec7bdbc4baa18542ccbc9ceef9098c1d77afb.zip  | |
Fix debugging
Diffstat (limited to '')
| -rw-r--r-- | .vscode/launch.json | 3 | ||||
| -rw-r--r-- | .vscode/tasks.json | 1 | 
2 files changed, 3 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 76c9ca2..13463af 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,7 @@      // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
      "version": "0.2.0",
      "configurations": [
 +
          {
              "type": "java",
              "name": "Debug (Launch) with Arguments Prompt",
 @@ -19,7 +20,7 @@              "console": "integratedTerminal"
          },
          {
 -            "name": "C++",
 +            "name": "C/C++",
              "type": "cppdbg",
              "request": "launch",
              "preLaunchTask": "Build c++",
 diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f029853..7551630 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -10,6 +10,7 @@              "args": [                  "-g",                  "-Wall", +                "-Wextra",                  "${file}",                  "-o",                  "debug"  | 
