summary refs log tree commit diff stats
path: root/tests/manyloc/argument_parser
diff options
context:
space:
mode:
authormetagn <metagngn@gmail.com>2024-09-30 18:34:09 +0300
committerGitHub <noreply@github.com>2024-09-30 17:34:09 +0200
commitfebc58e0365f683df0eee973e7fa183d8cfaddbc (patch)
treeebe6a1798ef927b9a878c52cbc86afa0ef467226 /tests/manyloc/argument_parser
parentb0e6d28782ce8c3d8e0b4a64e01f21d6f900648f (diff)
downloadNim-febc58e0365f683df0eee973e7fa183d8cfaddbc.tar.gz
allow C atomics on C++ with -d:nimUseCAtomics (#24207)
refs https://github.com/nim-lang/Nim/pull/24200#issuecomment-2382501282

Workaround for C++ Atomic[T] issues that doesn't require a compiler
change. Not tested or documented in case it's not meant to be officially
supported, locally tested `tatomics` and #24159 to work with it though,
can add these as tests if required.
Diffstat (limited to 'tests/manyloc/argument_parser')
0 files changed, 0 insertions, 0 deletions
/html/999spaces.cc.html?h=main&id=2187d42ab79a087af1ea4227b90e4600a291b341'>2187d42a ^
ac07e589 ^

08a0eed6 ^
e4ac3c9e ^
ac07e589 ^





2187d42a ^

a654e4ec ^



e5c11a51 ^






















a654e4ec ^

2187d42a ^
e5c11a51 ^
e4ac3c9e ^
a654e4ec ^
204dae92 ^










51728d93 ^
e4ac3c9e ^
204dae92 ^
e4ac3c9e ^
204dae92 ^




5fe060d5 ^
204dae92 ^
e4ac3c9e ^
204dae92 ^






e4ac3c9e ^

204dae92 ^























































2187d42a ^


a654e4ec ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149