Skip to content

Commit e1bf45e

Browse files
committed
3rd attempt to make Bsucc an array
1 parent 2990bc7 commit e1bf45e

13 files changed

Lines changed: 167 additions & 52 deletions

File tree

compiler/src/dmd/backend/barray.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ struct Barray(T)
190190
*/
191191
bool equals(ref const Barray rhs)
192192
{
193-
if (array.length != rhs.length)
194-
return false;
193+
if (array.length != rhs.length)
194+
return false;
195195
foreach (i, ref t; array)
196196
{
197197
if (t != rhs.array[i])

0 commit comments

Comments
 (0)