Mark random coverage line in std.concurrency

This commit is contained in:
Sebastian Wilzbach 2017-07-17 22:05:08 +02:00
parent e8ebd82eab
commit f46a73ad26

View file

@ -2235,7 +2235,7 @@ private
if (m_last is m_first) if (m_last is m_first)
m_last = null; m_last = null;
else if (m_last is n.next) else if (m_last is n.next)
m_last = n; m_last = n; // nocoverage
Node* to_free = n.next; Node* to_free = n.next;
n.next = n.next.next; n.next = n.next.next;
freeNode(to_free); freeNode(to_free);