Commit 7fba56f030299dc391f563a0e5ff18e089c12912
Merge branch 'release_v1.01' into release_v1.1
Showing
2 changed files
with
3 additions
and
137 deletions
.gitignore
0 → 100644
.vscode/settings.json
1 | 1 | { |
2 | - "files.associations": { | |
3 | - "*.ipp": "cpp", | |
4 | - "cctype": "cpp", | |
5 | - "clocale": "cpp", | |
6 | - "cmath": "cpp", | |
7 | - "csetjmp": "cpp", | |
8 | - "csignal": "cpp", | |
9 | - "cstdarg": "cpp", | |
10 | - "cstddef": "cpp", | |
11 | - "cstdio": "cpp", | |
12 | - "cstdlib": "cpp", | |
13 | - "cstring": "cpp", | |
14 | - "ctime": "cpp", | |
15 | - "cwchar": "cpp", | |
16 | - "cwctype": "cpp", | |
17 | - "any": "cpp", | |
18 | - "array": "cpp", | |
19 | - "atomic": "cpp", | |
20 | - "strstream": "cpp", | |
21 | - "bit": "cpp", | |
22 | - "*.tcc": "cpp", | |
23 | - "bitset": "cpp", | |
24 | - "cfenv": "cpp", | |
25 | - "charconv": "cpp", | |
26 | - "chrono": "cpp", | |
27 | - "cinttypes": "cpp", | |
28 | - "codecvt": "cpp", | |
29 | - "complex": "cpp", | |
30 | - "condition_variable": "cpp", | |
31 | - "cstdint": "cpp", | |
32 | - "deque": "cpp", | |
33 | - "forward_list": "cpp", | |
34 | - "list": "cpp", | |
35 | - "map": "cpp", | |
36 | - "set": "cpp", | |
37 | - "unordered_map": "cpp", | |
38 | - "unordered_set": "cpp", | |
39 | - "vector": "cpp", | |
40 | - "exception": "cpp", | |
41 | - "algorithm": "cpp", | |
42 | - "functional": "cpp", | |
43 | - "iterator": "cpp", | |
44 | - "memory": "cpp", | |
45 | - "memory_resource": "cpp", | |
46 | - "numeric": "cpp", | |
47 | - "optional": "cpp", | |
48 | - "random": "cpp", | |
49 | - "ratio": "cpp", | |
50 | - "regex": "cpp", | |
51 | - "source_location": "cpp", | |
52 | - "string": "cpp", | |
53 | - "string_view": "cpp", | |
54 | - "system_error": "cpp", | |
55 | - "tuple": "cpp", | |
56 | - "type_traits": "cpp", | |
57 | - "utility": "cpp", | |
58 | - "rope": "cpp", | |
59 | - "slist": "cpp", | |
60 | - "fstream": "cpp", | |
61 | - "future": "cpp", | |
62 | - "initializer_list": "cpp", | |
63 | - "iomanip": "cpp", | |
64 | - "iosfwd": "cpp", | |
65 | - "iostream": "cpp", | |
66 | - "istream": "cpp", | |
67 | - "limits": "cpp", | |
68 | - "mutex": "cpp", | |
69 | - "new": "cpp", | |
70 | - "ostream": "cpp", | |
71 | - "scoped_allocator": "cpp", | |
72 | - "shared_mutex": "cpp", | |
73 | - "sstream": "cpp", | |
74 | - "stdexcept": "cpp", | |
75 | - "streambuf": "cpp", | |
76 | - "thread": "cpp", | |
77 | - "typeindex": "cpp", | |
78 | - "typeinfo": "cpp", | |
79 | - "valarray": "cpp", | |
80 | - "variant": "cpp" | |
81 | - }, | |
82 | - "C_Cpp_Runner.cCompilerPath": "gcc", | |
83 | - "C_Cpp_Runner.cppCompilerPath": "g++", | |
84 | - "C_Cpp_Runner.debuggerPath": "gdb", | |
85 | - "C_Cpp_Runner.cStandard": "", | |
86 | - "C_Cpp_Runner.cppStandard": "", | |
87 | - "C_Cpp_Runner.msvcBatchPath": "", | |
88 | - "C_Cpp_Runner.useMsvc": false, | |
89 | - "C_Cpp_Runner.warnings": [ | |
90 | - "-Wall", | |
91 | - "-Wextra", | |
92 | - "-Wpedantic", | |
93 | - "-Wshadow", | |
94 | - "-Wformat=2", | |
95 | - "-Wcast-align", | |
96 | - "-Wconversion", | |
97 | - "-Wsign-conversion", | |
98 | - "-Wnull-dereference" | |
99 | - ], | |
100 | - "C_Cpp_Runner.msvcWarnings": [ | |
101 | - "/W4", | |
102 | - "/permissive-", | |
103 | - "/w14242", | |
104 | - "/w14287", | |
105 | - "/w14296", | |
106 | - "/w14311", | |
107 | - "/w14826", | |
108 | - "/w44062", | |
109 | - "/w44242", | |
110 | - "/w14905", | |
111 | - "/w14906", | |
112 | - "/w14263", | |
113 | - "/w44265", | |
114 | - "/w14928" | |
115 | - ], | |
116 | - "C_Cpp_Runner.enableWarnings": true, | |
117 | - "C_Cpp_Runner.warningsAsError": false, | |
118 | - "C_Cpp_Runner.compilerArgs": [], | |
119 | - "C_Cpp_Runner.linkerArgs": [], | |
120 | - "C_Cpp_Runner.includePaths": [], | |
121 | - "C_Cpp_Runner.includeSearch": [ | |
122 | - "*", | |
123 | - "**/*" | |
124 | - ], | |
125 | - "C_Cpp_Runner.excludeSearch": [ | |
126 | - "**/build", | |
127 | - "**/build/**", | |
128 | - "**/.*", | |
129 | - "**/.*/**", | |
130 | - "**/.vscode", | |
131 | - "**/.vscode/**" | |
132 | - ], | |
133 | - "C_Cpp_Runner.useAddressSanitizer": false, | |
134 | - "C_Cpp_Runner.useUndefinedSanitizer": false, | |
135 | - "C_Cpp_Runner.useLeakSanitizer": false, | |
136 | - "C_Cpp_Runner.showCompilationTime": false, | |
137 | - "C_Cpp_Runner.useLinkTimeOptimization": false, | |
138 | - "C_Cpp_Runner.msvcSecureNoWarnings": false | |
2 | + "C_Cpp_Runner.msvcBatchPath": "" | |
139 | 3 | } |
140 | 4 | \ No newline at end of file | ... | ... |