summary refs log tree commit diff stats
path: root/lib/pure/collections
diff options
context:
space:
mode:
authorLynn C. Rees <lcrees@gmail.com>2017-11-15 09:34:48 -0700
committerAndreas Rumpf <rumpf_a@web.de>2017-11-15 17:34:48 +0100
commit0ab373115c75e75618d3e8935445cee3e0298b60 (patch)
treecb2de6d3c431a0c1a2c23d00681985d6b3f6173a /lib/pure/collections
parent7f4248dc0c785f75a74d955467195ef968ea7a4a (diff)
downloadNim-0ab373115c75e75618d3e8935445cee3e0298b60.tar.gz
Trim remaining expr/stmt from stdlib (#6742)
Diffstat (limited to 'lib/pure/collections')
-rw-r--r--lib/pure/collections/sharedstrings.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/collections/sharedstrings.nim b/lib/pure/collections/sharedstrings.nim
index 83edf8d94..7e9de4b73 100644
--- a/lib/pure/collections/sharedstrings.nim
+++ b/lib/pure/collections/sharedstrings.nim
@@ -87,10 +87,10 @@ proc newSharedString*(s: string): SharedString =
   result.len = len
 
 when declared(atomicLoadN):
-  template load(x): expr = atomicLoadN(addr x, ATOMIC_SEQ_CST)
+  template load(x): untyped = atomicLoadN(addr x, ATOMIC_SEQ_CST)
 else:
   # XXX Fixme
-  template load(x): expr = x
+  template load(x): untyped = x
 
 proc add*(s: var SharedString; t: cstring; len: Natural) =
   if len == 0: return
/a> 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191