Skip to content

Commit

Permalink
Fixed long lines in std/container/rbtree.d
Browse files Browse the repository at this point in the history
  • Loading branch information
JackStouffer committed May 11, 2016
1 parent caba6da commit 13e7176
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion std/container/rbtree.d
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,9 @@ assert(equal(rbt[], [5]));
{
writeln("bad tree at:");
debug printTree(n);
throw new Exception("Node at path " ~ path ~ " has different number of black nodes on left and right paths");
throw new Exception(
"Node at path " ~ path ~ " has different number of black nodes on left and right paths"
);
}
return l + (n.color == n.color.Black ? 1 : 0);
}
Expand Down

0 comments on commit 13e7176

Please sign in to comment.