Add a workaround for dmd 2.076.1 on OSX

This commit is contained in:
Eugen Wissner 2018-02-25 21:33:29 +01:00
parent 03c40ecace
commit 760cea163d
1 changed files with 6 additions and 3 deletions

View File

@ -639,7 +639,7 @@ struct SList(T)
{ {
auto n = this.head.next; auto n = this.head.next;
this.allocator.dispose(this.head); this.allocator_.dispose(this.head);
this.head = n; this.head = n;
} }
@ -2038,7 +2038,10 @@ struct DList(T)
while (e !is tailNext) while (e !is tailNext)
{ {
auto next = e.next; auto next = e.next;
allocator.dispose(e); /* Workaround for dmd 2.076.1 bug on OSX. Invariants fail when
the allocator is called. Here it should be safe to use
allocator_ directory, since the list isn't empty. */
this.allocator_.dispose(e);
e = next; e = next;
} }
@ -2057,7 +2060,7 @@ struct DList(T)
this.head = null; this.head = null;
} }
*r.head = tailNext; *r.head = tailNext;
*r.tail = tail; *r.tail = this.tail;
return r; return r;
} }