Skip to content

Commit e54d344

Browse files
committed
Reduce heap allocations and use modern cpp
1 parent 081701d commit e54d344

File tree

2 files changed

+179
-136
lines changed

2 files changed

+179
-136
lines changed

.vscode/settings.json

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
{
2+
"files.associations": {
3+
"__bit_reference": "cpp",
4+
"__bits": "cpp",
5+
"__config": "cpp",
6+
"__debug": "cpp",
7+
"__errc": "cpp",
8+
"__functional_base": "cpp",
9+
"__hash_table": "cpp",
10+
"__locale": "cpp",
11+
"__mutex_base": "cpp",
12+
"__node_handle": "cpp",
13+
"__nullptr": "cpp",
14+
"__split_buffer": "cpp",
15+
"__string": "cpp",
16+
"__threading_support": "cpp",
17+
"__tree": "cpp",
18+
"__tuple": "cpp",
19+
"algorithm": "cpp",
20+
"array": "cpp",
21+
"atomic": "cpp",
22+
"bit": "cpp",
23+
"bitset": "cpp",
24+
"cctype": "cpp",
25+
"chrono": "cpp",
26+
"clocale": "cpp",
27+
"cmath": "cpp",
28+
"compare": "cpp",
29+
"complex": "cpp",
30+
"concepts": "cpp",
31+
"condition_variable": "cpp",
32+
"cstdarg": "cpp",
33+
"cstddef": "cpp",
34+
"cstdint": "cpp",
35+
"cstdio": "cpp",
36+
"cstdlib": "cpp",
37+
"cstring": "cpp",
38+
"ctime": "cpp",
39+
"cwchar": "cpp",
40+
"cwctype": "cpp",
41+
"deque": "cpp",
42+
"exception": "cpp",
43+
"functional": "cpp",
44+
"initializer_list": "cpp",
45+
"ios": "cpp",
46+
"iosfwd": "cpp",
47+
"iostream": "cpp",
48+
"istream": "cpp",
49+
"iterator": "cpp",
50+
"limits": "cpp",
51+
"locale": "cpp",
52+
"map": "cpp",
53+
"memory": "cpp",
54+
"mutex": "cpp",
55+
"new": "cpp",
56+
"numbers": "cpp",
57+
"numeric": "cpp",
58+
"optional": "cpp",
59+
"ostream": "cpp",
60+
"queue": "cpp",
61+
"random": "cpp",
62+
"ratio": "cpp",
63+
"semaphore": "cpp",
64+
"set": "cpp",
65+
"sstream": "cpp",
66+
"stdexcept": "cpp",
67+
"streambuf": "cpp",
68+
"string": "cpp",
69+
"string_view": "cpp",
70+
"system_error": "cpp",
71+
"thread": "cpp",
72+
"tuple": "cpp",
73+
"type_traits": "cpp",
74+
"typeinfo": "cpp",
75+
"unordered_map": "cpp",
76+
"utility": "cpp",
77+
"vector": "cpp",
78+
"*.tcc": "cpp",
79+
"memory_resource": "cpp",
80+
"stop_token": "cpp",
81+
"__memory": "cpp"
82+
}
83+
}

0 commit comments

Comments
 (0)