Skip to content

Commit

Permalink
Fixed long lines in std/file.d
Browse files Browse the repository at this point in the history
  • Loading branch information
JackStouffer committed May 11, 2016
1 parent 8559ba9 commit e216108
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions std/file.d
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ private T cenforce(T)(T condition, lazy const(char)[] name, string file = __FILE

version (Windows)
@trusted
private T cenforce(T)(T condition, const(char)[] name, const(FSChar)* namez, string file = __FILE__, size_t line = __LINE__)
private T cenforce(T)(T condition, const(char)[] name, const(FSChar)* namez,
string file = __FILE__, size_t line = __LINE__)
{
if (condition)
return condition;
Expand All @@ -187,7 +188,8 @@ private T cenforce(T)(T condition, const(char)[] name, const(FSChar)* namez, str

version (Posix)
@trusted
private T cenforce(T)(T condition, const(char)[] name, const(FSChar)* namez, string file = __FILE__, size_t line = __LINE__)
private T cenforce(T)(T condition, const(char)[] name, const(FSChar)* namez,
string file = __FILE__, size_t line = __LINE__)
{
if (condition)
return condition;
Expand Down

0 comments on commit e216108

Please sign in to comment.