Skip to content

Commit 2ffac4b

Browse files
committed
relax isIterator constraints
1 parent fa02fd0 commit 2ffac4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/mir/ndslice/traits.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ template isIterator(T)
232232
--a;
233233
--b;
234234
auto t = a[sizediff_t(3)];
235-
b = a + sizediff_t(3);
236-
b = a - sizediff_t(3);
235+
//b = a + sizediff_t(3);
236+
//b = a - sizediff_t(3);
237237
a += sizediff_t(3);
238238
a -= sizediff_t(3);
239239
return *a;

0 commit comments

Comments
 (0)