Skip to content

Commit dbc29e0

Browse files
committed
Modernize
Fixes a number of outdated issues, as well as a bug that caused the TAP formatter to always fail.
1 parent 189a94a commit dbc29e0

18 files changed

+124
-4002
lines changed

.gitmodules

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
[submodule "include/cxx-prettyprint"]
22
path = include/cxx-prettyprint
3-
url = https://github.com/toroidal-code/cxx-prettyprint.git
4-
[submodule "include/optional"]
5-
path = include/optional
6-
url = https://github.com/akrzemi1/Optional
3+
url = https://github.com/toroidal-code/cxx-prettyprint.git

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "lldb",
6+
"request": "launch",
7+
"name": "Launch",
8+
"program": "${workspaceFolder}/build/spec/spec_runner.exe",
9+
"args": [],
10+
"cwd": "${workspaceFolder}"
11+
},
12+
],
13+
"compounds": []
14+
}

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"files.associations": {
3+
"*.scons": "python",
4+
"regex": "cpp",
5+
"xutility": "cpp",
6+
"optional": "cpp"
7+
}
8+
}

0 commit comments

Comments
 (0)