Skip to content

Commit d0572ee

Browse files
committed
Get rid of __ArrayEq
As rendered obsolete by dlang/dmd#11212.
1 parent 54197db commit d0572ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/internal/array/equality.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
module core.internal.array.equality;
1212

1313
// `lhs == rhs` lowers to `__equals(lhs, rhs)` for dynamic arrays
14-
bool __equals(T1, T2)(T1[] lhs, T2[] rhs)
14+
bool __equals(T1, T2)(scope T1[] lhs, scope T2[] rhs)
1515
{
1616
import core.internal.traits : Unqual;
1717
alias U1 = Unqual!T1;

0 commit comments

Comments
 (0)