Skip to content
This repository was archived by the owner on Dec 19, 2019. It is now read-only.

Commit 30db2d6

Browse files
author
ZhangZisu
committed
Update
1 parent 0f27c94 commit 30db2d6

25 files changed

+1516
-155
lines changed

.vscode/c_cpp_properties.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "MinGW",
5+
"intelliSenseMode": "gcc-x64",
6+
"compilerPath": "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin\\g++.exe",
7+
"includePath": [
8+
"${workspaceFolder}"
9+
],
10+
"defines": [],
11+
"cStandard": "c11",
12+
"cppStandard": "c++17"
13+
}
14+
],
15+
"version": 4
16+
}

.vscode/launch.json

+9-26
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"configurations": [
77
{
88
"type": "node",
9-
"request": "launch",
10-
"name": "Launch Program",
11-
"program": "${file}"
9+
"request": "attach",
10+
"name": "Attach",
11+
"port": 9229
1212
},
1313
{
14-
"name": "C++ GDB Debug (Linux)",
14+
"name": "C++ GDB Debug",
1515
"type": "cppdbg",
1616
"request": "launch",
1717
"program": "${fileDirname}\\${fileBasenameNoExtension}",
@@ -29,28 +29,11 @@
2929
"ignoreFailures": true
3030
}
3131
],
32-
"preLaunchTask": "Build current source file"
33-
},
34-
{
35-
"name": "C++ GDB Debug (Windows)",
36-
"type": "cppdbg",
37-
"request": "launch",
38-
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
39-
"args": [],
40-
"stopAtEntry": false,
41-
"cwd": "${fileDirname}",
42-
"environment": [],
43-
"externalConsole": true,
44-
"MIMode": "gdb",
45-
"miDebuggerPath": "gdb.exe",
46-
"setupCommands": [
47-
{
48-
"description": "Enable pretty-printing for gdb",
49-
"text": "-enable-pretty-printing",
50-
"ignoreFailures": true
51-
}
52-
],
53-
"preLaunchTask": "Build current source file"
32+
"preLaunchTask": "Build current source file",
33+
"windows": {
34+
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
35+
"miDebuggerPath": "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin\\gdb.exe"
36+
}
5437
}
5538
]
5639
}

.vscode/settings.json

+1-100
Original file line numberDiff line numberDiff line change
@@ -1,103 +1,4 @@
11
{
2-
"files.associations": {
3-
"deque": "cpp",
4-
"list": "cpp",
5-
"vector": "cpp",
6-
"xhash": "cpp",
7-
"xstring": "cpp",
8-
"xtree": "cpp",
9-
"algorithm": "cpp",
10-
"cstdio": "cpp",
11-
"xutility": "cpp",
12-
"bitset": "cpp",
13-
"initializer_list": "cpp",
14-
"queue": "cpp",
15-
"type_traits": "cpp",
16-
"iosfwd": "cpp",
17-
"xlocale": "cpp",
18-
"xlocmon": "cpp",
19-
"xlocnum": "cpp",
20-
"xloctime": "cpp",
21-
"xfunctional": "cpp",
22-
"limits": "cpp",
23-
"iostream": "cpp",
24-
"cctype": "cpp",
25-
"cmath": "cpp",
26-
"cstdarg": "cpp",
27-
"cstddef": "cpp",
28-
"cstdint": "cpp",
29-
"cstdlib": "cpp",
30-
"cstring": "cpp",
31-
"ctime": "cpp",
32-
"cwchar": "cpp",
33-
"exception": "cpp",
34-
"functional": "cpp",
35-
"hash_map": "cpp",
36-
"hash_set": "cpp",
37-
"iomanip": "cpp",
38-
"ios": "cpp",
39-
"istream": "cpp",
40-
"map": "cpp",
41-
"memory": "cpp",
42-
"new": "cpp",
43-
"ostream": "cpp",
44-
"set": "cpp",
45-
"stdexcept": "cpp",
46-
"streambuf": "cpp",
47-
"string": "cpp",
48-
"system_error": "cpp",
49-
"tuple": "cpp",
50-
"typeinfo": "cpp",
51-
"unordered_map": "cpp",
52-
"utility": "cpp",
53-
"xfacet": "cpp",
54-
"xiosbase": "cpp",
55-
"xlocinfo": "cpp",
56-
"xmemory": "cpp",
57-
"xmemory0": "cpp",
58-
"xstddef": "cpp",
59-
"xtr1common": "cpp",
60-
"array": "cpp",
61-
"atomic": "cpp",
62-
"*.tcc": "cpp",
63-
"cfenv": "cpp",
64-
"chrono": "cpp",
65-
"cinttypes": "cpp",
66-
"clocale": "cpp",
67-
"codecvt": "cpp",
68-
"complex": "cpp",
69-
"condition_variable": "cpp",
70-
"csetjmp": "cpp",
71-
"csignal": "cpp",
72-
"cuchar": "cpp",
73-
"cwctype": "cpp",
74-
"fstream": "cpp",
75-
"future": "cpp",
76-
"mutex": "cpp",
77-
"ratio": "cpp",
78-
"scoped_allocator": "cpp",
79-
"shared_mutex": "cpp",
80-
"sstream": "cpp",
81-
"thread": "cpp",
82-
"typeindex": "cpp",
83-
"valarray": "cpp",
84-
"stack": "cpp",
85-
"xcomplex": "cpp",
86-
"numeric": "cpp",
87-
"optional": "cpp",
88-
"string_view": "cpp",
89-
"*.ipp": "cpp",
90-
"charconv": "cpp",
91-
"forward_list": "cpp",
92-
"unordered_set": "cpp",
93-
"cassert": "cpp"
94-
},
95-
"editor.mouseWheelZoom": false,
962
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 8, ColumnLimit: 0, UseTab: Always}",
97-
"C_Cpp.intelliSenseEngineFallback": "Enabled",
98-
"workbench.colorCustomizations": {
99-
"activityBar.background": "#372D04",
100-
"titleBar.activeBackground": "#4E3F06",
101-
"titleBar.activeForeground": "#FEFBEE"
102-
}
3+
"C_Cpp.intelliSenseEngineFallback": "Enabled"
1034
}

0 commit comments

Comments
 (0)