Skip to content

Commit f4eb06c

Browse files
committed
deleted valenbranch
1 parent 12c063b commit f4eb06c

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

.vscode/launch.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "(gdb) Launch",
5+
"type": "cppdbg",
6+
"request": "launch",
7+
"program": "enter program name, for example ${workspaceFolder}/a.exe",
8+
"args": [],
9+
"stopAtEntry": false,
10+
"cwd": "${fileDirname}",
11+
"environment": [],
12+
"externalConsole": false,
13+
"MIMode": "gdb",
14+
"miDebuggerPath": "/path/to/gdb",
15+
"setupCommands": [
16+
{
17+
"description": "Enable pretty-printing for gdb",
18+
"text": "-enable-pretty-printing",
19+
"ignoreFailures": true
20+
},
21+
{
22+
"description": "Set Disassembly Flavor to Intel",
23+
"text": "-gdb-set disassembly-flavor intel",
24+
"ignoreFailures": true
25+
}
26+
]
27+
}
28+
],
29+
"version": "2.0.0"
30+
}

src/configuration/structs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ typedef struct {
1111
int gamesPerPlayer;
1212
} Configuration;
1313

14-
#endif // SRC__CONFIG_STRUCTS_H_INCLUDED
14+
#endif // SRC__CONFIG_STRUCTS_H_INCLUDED

0 commit comments

Comments
 (0)