Skip to content

Commit

Permalink
Fixed long lines in std/regex/package.d
Browse files Browse the repository at this point in the history
  • Loading branch information
JackStouffer committed May 11, 2016
1 parent c1600e7 commit 3b24d64
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion std/regex/package.d
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,10 @@ private:
import core.stdc.stdlib;
if (n > smallString)
{
auto p = cast(Group!DataIndex*)enforce(calloc(Group!DataIndex.sizeof,n), "Failed to allocate Captures struct");
auto p = cast(Group!DataIndex*)enforce(
calloc(Group!DataIndex.sizeof,n),
"Failed to allocate Captures struct"
);
big_matches = p[0..n];
_refcount = 1;
}
Expand Down

0 comments on commit 3b24d64

Please sign in to comment.