Skip to content

Commit f62af5f

Browse files
committed
refactor Bsucc to be an array rather than a list
1 parent 4cc01a9 commit f62af5f

19 files changed

Lines changed: 292 additions & 342 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)