summary refs log tree commit diff stats
path: root/lib/core/macros.nim
diff options
context:
space:
mode:
authorJacek Sieka <arnetheduck@gmail.com>2016-10-24 21:10:48 +0800
committerJacek Sieka <arnetheduck@gmail.com>2016-10-24 21:10:48 +0800
commit6f7b891bdc27a92e13acb0a648cafdf7431708fe (patch)
tree3330726ed26d543d3ceac26a18586cfc569b51b3 /lib/core/macros.nim
parent8aecacc1dfd10cfbaf30964e2eb78dd672623d31 (diff)
downloadNim-6f7b891bdc27a92e13acb0a648cafdf7431708fe.tar.gz
remove remnants of tyIter
Diffstat (limited to 'lib/core/macros.nim')
-rw-r--r--lib/core/macros.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index 19452b4a8..292e8dd3c 100644
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -92,7 +92,7 @@ type
     ntyUInt, ntyUInt8, ntyUInt16, ntyUInt32, ntyUInt64,
     ntyBigNum,
     ntyConst, ntyMutable, ntyVarargs,
-    ntyIter,
+    ntyUnused,
     ntyError,
     ntyBuiltinTypeClass, ntyConcept, ntyConceptInst, ntyComposite,
     ntyAnd, ntyOr, ntyNot
/blame/rod/wordrecg.nim?h=devel&id=90119066adf6a9a2e8d779d4955637c6dd99aba3'>^
b50133b50 ^

0ea4b71ee ^

e27ab3673 ^
560a3bad2 ^

057b53e13 ^
c0a3d4406 ^
e25474154 ^
b961e47bf ^
c25ffbf26 ^
b50133b50 ^
375c95d3a ^
560a3bad2 ^
99bcc233c ^
337e1ecc7 ^


9673e4f2d ^
28d9398de ^
3091bc495 ^
23ef565a3 ^
f25c638dc ^
3b69a8d27 ^

e25474154 ^
c7b130b4e ^
38710b614 ^
e25474154 ^

3b7ef2288 ^
804e2ac89 ^
1d14cb1ad ^
48a62af3b ^
f44a4362b ^
804e2ac89 ^
2de98d9e0 ^
485c37194 ^
c7b130b4e ^
8d19a93f1 ^
132b6b3ef ^
da190876d ^
ab72377ce ^
7916b1f9a ^
f25c638dc ^







1e45bb79a ^
f25c638dc ^


38710b614 ^



b50133b50 ^
e25474154 ^



a6daf7152 ^
f25c638dc ^



38710b614 ^

f25c638dc ^


c0a3d4406 ^
f25c638dc ^
b50133b50 ^

0ea4b71ee ^

560a3bad2 ^
e27ab3673 ^
560a3bad2 ^
093af9b9e ^
3ef146b0e ^
057b53e13 ^
c0a3d4406 ^
3ef146b0e ^
d0de1fc33 ^
b961e47bf ^
c0a3d4406 ^
c25ffbf26 ^
b50133b50 ^

375c95d3a ^
560a3bad2 ^
337e1ecc7 ^


5131b3cea ^
9673e4f2d ^
28d9398de ^
f25c638dc ^
23ef565a3 ^
3b69a8d27 ^
e25474154 ^

c7b130b4e ^
38710b614 ^
f25c638dc ^
e25474154 ^
3b7ef2288 ^


1d14cb1ad ^
48a62af3b ^
f44a4362b ^
804e2ac89 ^
2de98d9e0 ^
485c37194 ^
8d19a93f1 ^
132b6b3ef ^

da190876d ^
5506e8491 ^
7916b1f9a ^
f25c638dc ^








1e45bb79a ^
f25c638dc ^



38710b614 ^



f25c638dc ^
e25474154 ^
92b8fac94 ^
e25474154 ^




8d734244b ^
e25474154 ^

8d734244b ^
92b8fac94 ^
8d734244b ^
e25474154 ^



922e216b8 ^
e25474154 ^
b50133b50 ^
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
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